configitems: register the 'histedit.linelen' config
authorBoris Feld <boris.feld@octobus.net>
Fri, 30 Jun 2017 03:42:39 +0200
changeset 34472 12c068377273
parent 34471 1e37cb4da6f8
child 34473 a746472c3d09
configitems: register the 'histedit.linelen' config
hgext/histedit.py
--- a/hgext/histedit.py	Fri Jun 30 03:42:38 2017 +0200
+++ b/hgext/histedit.py	Fri Jun 30 03:42:39 2017 +0200
@@ -221,6 +221,9 @@
 configitem('histedit', 'dropmissing',
     default=False,
 )
+configitem('histedit', 'linelen',
+    default=80,
+)
 
 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
@@ -452,7 +455,7 @@
         line = '%s %s %d %s' % (self.verb, ctx, ctx.rev(), summary)
         # trim to 75 columns by default so it's not stupidly wide in my editor
         # (the 5 more are left for verb)
-        maxlen = self.repo.ui.configint('histedit', 'linelen', default=80)
+        maxlen = self.repo.ui.configint('histedit', 'linelen')
         maxlen = max(maxlen, 22) # avoid truncating hash
         return util.ellipsis(line, maxlen)