diff mercurial/extensions.py @ 29895:b1ebc767563d

help: show content for explicitly disabled extension (issue5228)
author liscju <piotr.listkiewicz@gmail.com>
date Thu, 01 Sep 2016 22:06:42 +0200
parents d5883fd055c6
children ebe488e04ca3
line wrap: on
line diff
--- a/mercurial/extensions.py	Fri Sep 02 10:18:56 2016 +0200
+++ b/mercurial/extensions.py	Thu Sep 01 22:06:42 2016 +0200
@@ -22,6 +22,7 @@
 )
 
 _extensions = {}
+_disabledextensions = {}
 _aftercallbacks = {}
 _order = []
 _builtin = set(['hbisect', 'bookmarks', 'parentrevspec', 'progress', 'interhg',
@@ -148,6 +149,7 @@
     for (name, path) in result:
         if path:
             if path[0] == '!':
+                _disabledextensions[name] = path[1:]
                 continue
         try:
             load(ui, name, path)
@@ -370,6 +372,7 @@
         if name in exts or name in _order or name == '__init__':
             continue
         exts[name] = path
+    exts.update(_disabledextensions)
     return exts
 
 def _moduledoc(file):