We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4c850 commit fb831ffCopy full SHA for fb831ff
autoload/pymatcher.py
@@ -28,6 +28,9 @@ def CtrlPPyMatch():
28
29
# Append the last character in the string to the regex
30
regex += escaped[-1]
31
+ # because this IGNORECASE flag is extremely expensive we are converting everything to lower case
32
+ # see https://github.com/FelikZ/ctrlp-py-matcher/issues/29
33
+ regex = regex.lower()
34
35
res = []
36
prog = re.compile(regex)
0 commit comments