comparison mercurial/configitems.py @ 34738:1c9128b735cd

configitems: fixup default value of annotate config option It turned out that configbool is used for most of them so the registered default value was wrong.
author Boris Feld <boris.feld@octobus.net>
date Mon, 16 Oct 2017 15:12:50 +0200
parents 330d0b582ab3
children 54fa3db5becf
comparison
equal deleted inserted replaced
34737:0c06875e7755 34738:1c9128b735cd
102 coreconfigitem('alias', '.*', 102 coreconfigitem('alias', '.*',
103 default=None, 103 default=None,
104 generic=True, 104 generic=True,
105 ) 105 )
106 coreconfigitem('annotate', 'nodates', 106 coreconfigitem('annotate', 'nodates',
107 default=None, 107 default=False,
108 ) 108 )
109 coreconfigitem('annotate', 'showfunc', 109 coreconfigitem('annotate', 'showfunc',
110 default=None, 110 default=False,
111 ) 111 )
112 coreconfigitem('annotate', 'unified', 112 coreconfigitem('annotate', 'unified',
113 default=None, 113 default=None,
114 ) 114 )
115 coreconfigitem('annotate', 'git', 115 coreconfigitem('annotate', 'git',
116 default=None, 116 default=False,
117 ) 117 )
118 coreconfigitem('annotate', 'ignorews', 118 coreconfigitem('annotate', 'ignorews',
119 default=None, 119 default=False,
120 ) 120 )
121 coreconfigitem('annotate', 'ignorewsamount', 121 coreconfigitem('annotate', 'ignorewsamount',
122 default=None, 122 default=False,
123 ) 123 )
124 coreconfigitem('annotate', 'ignoreblanklines', 124 coreconfigitem('annotate', 'ignoreblanklines',
125 default=None, 125 default=False,
126 ) 126 )
127 coreconfigitem('annotate', 'ignorewseol', 127 coreconfigitem('annotate', 'ignorewseol',
128 default=None, 128 default=False,
129 ) 129 )
130 coreconfigitem('annotate', 'nobinary', 130 coreconfigitem('annotate', 'nobinary',
131 default=None, 131 default=False,
132 ) 132 )
133 coreconfigitem('annotate', 'noprefix', 133 coreconfigitem('annotate', 'noprefix',
134 default=None, 134 default=False,
135 ) 135 )
136 coreconfigitem('auth', 'cookiefile', 136 coreconfigitem('auth', 'cookiefile',
137 default=None, 137 default=None,
138 ) 138 )
139 # bookmarks.pushing: internal hack for discovery 139 # bookmarks.pushing: internal hack for discovery