# HG changeset patch # User Boris Feld # Date 1507692225 -7200 # Node ID 37b4375b1221e3bda055f0cbecf06b3c9510fd2c # Parent 4876bf5a36fbb4ab69d8a9fec8b7a7889d141e57 configitems: register the annotate diff options diff -r 4876bf5a36fb -r 37b4375b1221 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, )