Compare commits

...

2 Commits

Author SHA1 Message Date
Alexandre Flament 82270e7156
Merge 5a1e789ee8 into cd384a8a60 2024-11-06 10:03:21 +01:00
Alexandre Flament 5a1e789ee8 Feature: bang & external bang can be written in upper case
Close #1223
2023-02-10 20:59:36 +00:00
1 changed files with 4 additions and 4 deletions

View File

@ -155,7 +155,7 @@ class ExternalBangParser(QueryPartParser):
return raw_value.startswith('!!') and len(raw_value) > 2
def __call__(self, raw_value):
value = raw_value[2:]
value = raw_value[2:].lower()
found, bang_ac_list = self._parse(value) if len(value) > 0 else (False, [])
if self.enable_autocomplete:
self._autocomplete(bang_ac_list)
@ -183,7 +183,7 @@ class BangParser(QueryPartParser):
return raw_value[0] == '!' and (len(raw_value) < 2 or raw_value[1] != '!')
def __call__(self, raw_value):
value = raw_value[1:].replace('-', ' ').replace('_', ' ')
value = raw_value[1:].replace('-', ' ').replace('_', ' ').lower()
found = self._parse(value) if len(value) > 0 else False
if found and raw_value[0] == '!':
self.raw_text_query.specific = True
@ -224,7 +224,7 @@ class BangParser(QueryPartParser):
# check if query starts with category name
for category in categories:
if category.startswith(value):
if category.lower().startswith(value):
self._add_autocomplete(first_char + category.replace(' ', '_'))
# check if query starts with engine name
@ -234,7 +234,7 @@ class BangParser(QueryPartParser):
# check if query starts with engine shortcut
for engine_shortcut in engine_shortcuts:
if engine_shortcut.startswith(value):
if engine_shortcut.lower().startswith(value):
self._add_autocomplete(first_char + engine_shortcut)