2016-07-04 20:46:43 +00:00
|
|
|
from flask_babel import gettext
|
2016-04-23 16:26:02 +00:00
|
|
|
|
|
|
|
name = gettext('Vim-like hotkeys')
|
2021-12-27 08:26:22 +00:00
|
|
|
description = gettext(
|
|
|
|
'Navigate search results with Vim-like hotkeys '
|
|
|
|
'(JavaScript required). '
|
|
|
|
'Press "h" key on main or result page to get help.'
|
|
|
|
)
|
2016-04-23 16:26:02 +00:00
|
|
|
default_on = False
|
2019-01-06 17:38:51 +00:00
|
|
|
preference_section = 'ui'
|
2016-04-23 16:26:02 +00:00
|
|
|
|
|
|
|
js_dependencies = ('plugins/js/vim_hotkeys.js',)
|
|
|
|
css_dependencies = ('plugins/css/vim_hotkeys.css',)
|