mirror of
https://github.com/searxng/searxng.git
synced 2025-07-16 01:39:24 +02:00
[fix] little autocompleter fix
This commit is contained in:
parent
eb6f3348c4
commit
c19b0899a4
2 changed files with 6 additions and 4 deletions
|
@ -52,7 +52,7 @@ def searx_bang(full_query):
|
|||
|
||||
# check if query starts with engine name
|
||||
for engine in engines:
|
||||
if engine.startswith(engine_query):
|
||||
if engine.startswith(engine_query.replace('_', ' ')):
|
||||
results.append('!{engine}'.format(engine=engine.replace(' ', '_')))
|
||||
|
||||
# check if query starts with engine shortcut
|
||||
|
@ -86,7 +86,7 @@ def searx_bang(full_query):
|
|||
results.append(':{lang_name}'.format(lang_name=lang_name))
|
||||
|
||||
# check if query starts with country
|
||||
if country.startswith(engine_query):
|
||||
if country.startswith(engine_query.replace('_', ' ')):
|
||||
results.append(':{country}'.format(country=country.replace(' ', '_')))
|
||||
|
||||
# remove duplicates
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue