hgext/eol.py
changeset 43205 dfaa477e37a8
parent 43204 fd8c3f59b544
child 43207 4aa9f3a1c1df
--- a/hgext/eol.py	Sun Oct 13 02:11:33 2019 +0200
+++ b/hgext/eol.py	Sun Oct 13 02:15:07 2019 +0200
@@ -221,6 +221,12 @@
         self.match = match.match(root, b'', [], include, exclude)
 
     def copytoui(self, ui):
+        newpatterns = set(pattern for pattern, key, m in self.patterns)
+        for section in (b'decode', b'encode'):
+            for oldpattern, _filter in ui.configitems(section):
+                if oldpattern not in newpatterns:
+                    if ui.configsource(section, oldpattern) == b'eol':
+                        ui.setconfig(section, oldpattern, b'!', b'eol')
         for pattern, key, m in self.patterns:
             try:
                 ui.setconfig(b'decode', pattern, self._decode[key], b'eol')