summaryrefslogtreecommitdiff
path: root/searx/templates/simple/preferences/hotkeys.html
blob: c13d0c8d220210f8a0a1f139729e5c6a6f70f204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<fieldset>{{- '' -}}
  <legend id="pref_hotkeys">{{- _('Hotkeys') -}}</legend>{{- '' -}}
  <div class="value">{{- '' -}}
    <select name="hotkeys" aria-labelledby="pref_hotkeys">{{- '' -}}
      <option value="default"
              {%- if hotkeys == 'default' %} selected="selected"
              {%- endif -%}>
              SearXNG{{- '' -}}
      </option>{{- '' -}}
      <option value="vim"
              {%- if hotkeys == 'vim' %} selected="selected"
              {%- endif -%}>
              {{- _('Vim-like') -}}
        </option>{{- '' -}}
    </select>{{- '' -}}
  </div>{{- '' -}}
  <div class="description">
    {{- _(
    'Navigate search results with hotkeys (JavaScript required). '
    'Press "h" key on main or result page to get help.'
    ) -}}
  </div>{{- '' -}}
</fieldset>{{- '' -}}