extensions help: make disabling example analogous to enabling example stable
authorChristian Ebert <blacktrash@gmx.net>
Wed, 23 Dec 2009 18:40:21 +0100
branchstable
changeset 10122 0ddbc0299742
parent 10120 fb890a546d44
child 10123 52c98c6d7297
child 10124 08384d8777a4
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.
help/extensions.txt
--- 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 = !