Mercurial > public > mercurial-scm > hg-stable
diff mercurial/configitems.py @ 34888:317566f0c2e6
show: move configitems to core
chgserver.py is also checking the config and will get:
devel-warn: accessing unregistered config item:
'commands.show.aliasprefix' at:
mercurial/chgserver.py:109
if the config is not registered.
Differential Revision: https://phab.mercurial-scm.org/D1178
author | Jun Wu <quark@fb.com> |
---|---|
date | Wed, 18 Oct 2017 15:05:03 -0700 |
parents | df2ff314e36f |
children | 6b77c13a1aab |
line wrap: on
line diff
--- a/mercurial/configitems.py Wed Oct 18 14:55:39 2017 -0700 +++ b/mercurial/configitems.py Wed Oct 18 15:05:03 2017 -0700 @@ -181,6 +181,9 @@ coreconfigitem('color', 'pagermode', default=dynamicdefault, ) +coreconfigitem('commands', 'show.aliasprefix', + default=list, +) coreconfigitem('commands', 'status.relative', default=False, )