diff options
-rw-r--r-- | ranger/core/actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 1b35e57b..8bbf1b62 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -693,7 +693,7 @@ class Actions(FileManagerAware, SettingsAware): def search_file(self, text, offset=1, regexp=True): if isinstance(text, str) and regexp: try: - text = re.compile(text, re.L | re.U | re.I) + text = re.compile(text, re.U | re.I) except Exception: return False self.thistab.last_search = text |