configitems: register the annotate diff options
authorBoris Feld <boris.feld@octobus.net>
Wed, 11 Oct 2017 05:23:45 +0200
changeset 34618 37b4375b1221
parent 34617 4876bf5a36fb
child 34619 18309380fb88
configitems: register the annotate diff options
mercurial/configitems.py
--- a/mercurial/configitems.py	Wed Oct 11 05:42:56 2017 +0200
+++ b/mercurial/configitems.py	Wed Oct 11 05:23:45 2017 +0200
@@ -62,6 +62,36 @@
 
 coreconfigitem = getitemregister(coreitems)
 
+coreconfigitem('annotate', 'nodates',
+    default=None,
+)
+coreconfigitem('annotate', 'showfunc',
+    default=None,
+)
+coreconfigitem('annotate', 'unified',
+    default=None,
+)
+coreconfigitem('annotate', 'git',
+    default=None,
+)
+coreconfigitem('annotate', 'ignorews',
+    default=None,
+)
+coreconfigitem('annotate', 'ignorewsamount',
+    default=None,
+)
+coreconfigitem('annotate', 'ignoreblanklines',
+    default=None,
+)
+coreconfigitem('annotate', 'ignorewseol',
+    default=None,
+)
+coreconfigitem('annotate', 'nobinary',
+    default=None,
+)
+coreconfigitem('annotate', 'noprefix',
+    default=None,
+)
 coreconfigitem('auth', 'cookiefile',
     default=None,
 )