mirror of
https://github.com/searxng/searxng.git
synced 2025-07-14 08:49:19 +02:00
[mod] preferences: implement drop-down menu for hotkeys (default, vim)
Replace the on/off checkbox of the vim-hotkeys in the preferences by a drop-down menu. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
09935e2897
commit
317db5b04f
6 changed files with 30 additions and 12 deletions
|
@ -362,7 +362,7 @@ def get_client_settings():
|
|||
'infinite_scroll': req_pref.get_value('infinite_scroll'),
|
||||
'translations': get_translations(),
|
||||
'search_on_category_select': req_pref.get_value('searx.plugins.search_on_category_select'),
|
||||
'hotkeys': req_pref.plugins.choices['searx.plugins.vim_hotkeys'],
|
||||
'hotkeys': req_pref.get_value('hotkeys'),
|
||||
'theme_static_path': custom_url_for('static', filename='themes/simple'),
|
||||
}
|
||||
|
||||
|
@ -390,6 +390,7 @@ def render(template_name: str, **kwargs):
|
|||
kwargs['autocomplete'] = request.preferences.get_value('autocomplete')
|
||||
kwargs['infinite_scroll'] = request.preferences.get_value('infinite_scroll')
|
||||
kwargs['search_on_category_select'] = request.preferences.get_value('search_on_category_select')
|
||||
kwargs['hotkeys'] = request.preferences.get_value('hotkeys')
|
||||
kwargs['results_on_new_tab'] = request.preferences.get_value('results_on_new_tab')
|
||||
kwargs['advanced_search'] = request.preferences.get_value('advanced_search')
|
||||
kwargs['query_in_title'] = request.preferences.get_value('query_in_title')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue