Mercurial > hg-stable
changeset 10122:0ddbc0299742 stable
extensions help: make disabling example analogous to enabling example
The example for enabling an extension in the module search path is:
foo =
foo can only be disabled by:
foo = !
and not by:
hgext.foo = !
As the examples now omit "hgext." the example
hgext.bar = !
is misleading.
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Wed, 23 Dec 2009 18:40:21 +0100 |
parents | fb890a546d44 |
children | 52c98c6d7297 08384d8777a4 |
files | help/extensions.txt |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/help/extensions.txt Sat Dec 05 14:18:31 2009 -0600 +++ b/help/extensions.txt Wed Dec 23 18:40:21 2009 +0100 @@ -28,6 +28,6 @@ [extensions] # disabling extension bar residing in /path/to/extension/bar.py - hgext.bar = !/path/to/extension/bar.py + bar = !/path/to/extension/bar.py # ditto, but no path was supplied for extension baz - hgext.baz = ! + baz = !