From 3246541bdc405f269179ec737b83772b926c43a6 Mon Sep 17 00:00:00 2001 From: Kirill Isakov Date: Sat, 23 Apr 2016 22:26:02 +0600 Subject: [WIP] Add vim-hotkeys plugin --- searx/plugins/vim_hotkeys.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 searx/plugins/vim_hotkeys.py (limited to 'searx/plugins/vim_hotkeys.py') diff --git a/searx/plugins/vim_hotkeys.py b/searx/plugins/vim_hotkeys.py new file mode 100644 index 000000000..e537a3ac8 --- /dev/null +++ b/searx/plugins/vim_hotkeys.py @@ -0,0 +1,10 @@ +from flask.ext.babel import gettext + +name = gettext('Vim-like hotkeys') +description = gettext('Navigate search results with Vim-like hotkeys ' + '(JavaScript required). ' + 'Press "h" key on main or result page to get help.') +default_on = False + +js_dependencies = ('plugins/js/vim_hotkeys.js',) +css_dependencies = ('plugins/css/vim_hotkeys.css',) -- cgit v1.2.3