We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f78e56 commit b3e04a7Copy full SHA for b3e04a7
pylib/editorconfig/ini.py
@@ -171,4 +171,5 @@ def _read(self, fp, fpname):
171
raise e
172
173
def optionxform(self, optionstr):
174
- return optionstr.lower()
+ # KOMODO: Preserve case
175
+ return optionstr # .lower()
0 commit comments