vim_hotkeys.py 383 B

12345678910
  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. js_dependencies = ('plugins/js/vim_hotkeys.js',)
  8. css_dependencies = ('plugins/css/vim_hotkeys.css',)