--- a/hgext/eol.py Fri Jun 30 03:43:43 2017 +0200
+++ b/hgext/eol.py Fri Jun 30 03:39:21 2017 +0200
@@ -102,6 +102,7 @@
extensions,
match,
pycompat,
+ registrar,
util,
)
@@ -111,6 +112,13 @@
# leave the attribute unspecified.
testedwith = 'ships-with-hg-core'
+configtable = {}
+configitem = registrar.configitem(configtable)
+
+configitem('eol', 'fix-trailing-newline',
+ default=False,
+)
+
# Matches a lone LF, i.e., one that is not part of CRLF.
singlelf = re.compile('(^|[^\r])\n')
@@ -123,7 +131,7 @@
return s
if ui.configbool('eol', 'only-consistent', True) and inconsistenteol(s):
return s
- if (ui.configbool('eol', 'fix-trailing-newline', False)
+ if (ui.configbool('eol', 'fix-trailing-newline')
and s and s[-1] != '\n'):
s = s + '\n'
return util.tolf(s)
@@ -134,7 +142,7 @@
return s
if ui.configbool('eol', 'only-consistent', True) and inconsistenteol(s):
return s
- if (ui.configbool('eol', 'fix-trailing-newline', False)
+ if (ui.configbool('eol', 'fix-trailing-newline')
and s and s[-1] != '\n'):
s = s + '\n'
return util.tocrlf(s)