# HG changeset patch # User Boris Feld # Date 2017-10-11 03:23:45 # Node ID 37b4375b1221e3bda055f0cbecf06b3c9510fd2c # Parent 4876bf5a36fbb4ab69d8a9fec8b7a7889d141e57 configitems: register the annotate diff options diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -62,6 +62,36 @@ def getitemregister(configtable): 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, )