diff options
author | katherine <shmibs@shmibbles.me> | 2017-01-17 05:22:23 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2017-01-17 05:22:23 -0700 |
commit | 5ac76841e76dc717b400c6f0ac741bb09e2b4a7d (patch) | |
tree | e04f0fa347d2306e03a746525292625035f24a14 | |
parent | 84179369f0787f6ca726a1d20040bd90aa1a364d (diff) | |
download | dotfiles-5ac76841e76dc717b400c6f0ac741bb09e2b4a7d.tar.gz |
remove re.LOCALE from commands.py
explodes ranger's search capabilities, parently
-rw-r--r-- | .config/ranger/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/ranger/commands.py b/.config/ranger/commands.py index 4d290e7..7ffd7f5 100644 --- a/.config/ranger/commands.py +++ b/.config/ranger/commands.py @@ -1092,7 +1092,7 @@ class scout(Command): regex = "^(?:(?!%s).)*$" % regex # Compile Regular Expression - options = re.LOCALE | re.UNICODE + options = re.UNICODE if self.IGNORE_CASE in flags or self.SMART_CASE in flags and \ pattern.islower(): options |= re.IGNORECASE |