vim_hotkeys.py 409 B

123456789101112
  1. from flask_babel import gettext
  2. name = gettext('Vim-like hotkeys')
  3. description = gettext('Navigate search results with Vim-like hotkeys '
  4. '(JavaScript required). '
  5. 'Press "h" key on main or result page to get help.')
  6. default_on = False
  7. preference_section = 'ui'
  8. js_dependencies = ('plugins/js/vim_hotkeys.js',)
  9. css_dependencies = ('plugins/css/vim_hotkeys.css',)