Debian package: Declare compliance with Debian Policy 4.3.0
[conkeror.git] / modules / bindings / default / hints.js
blob6c244f244d5049ad1e0adc57911f497aaa9629b1
1 /**
2  * (C) Copyright 2007-2008 Jeremy Maitin-Shepard
3  * (C) Copyright 2009-2010 John J. Foerch
4  *
5  * Use, modification, and distribution are subject to the terms specified in the
6  * COPYING file.
7 **/
9 define_fallthrough(hint_keymap, match_any_unmodified_character);
11 define_key(hint_keymap, match_hint_digit, "hints-handle-number");
12 define_key(hint_keymap, match_any_unmodified_character, null, $fallthrough);
14 define_key(hint_keymap, "back_space", "hints-backspace");
15 define_key(hint_keymap, "tab", "hints-next");
16 define_key(hint_keymap, "down", "hints-next");
17 define_key(hint_keymap, "C-s", "hints-next");
18 define_key(hint_keymap, "C-n", "hints-next");
19 define_key(hint_keymap, "S-tab", "hints-previous");
20 define_key(hint_keymap, "up", "hints-previous");
21 define_key(hint_keymap, "C-r", "hints-previous");
22 define_key(hint_keymap, "C-p", "hints-previous");
23 define_key(hint_keymap, "escape", "minibuffer-abort");
24 define_key(hint_keymap, "M-escape", "minibuffer-abort");
25 define_key(hint_keymap, "C-g", "minibuffer-abort");
26 define_key(hint_keymap, "return", "hints-exit");
27 define_key(hint_keymap, "C-q", "hints-quote-next");
30 define_fallthrough(hint_quote_next_keymap, match_any_unmodified_character);
31 define_key(hint_quote_next_keymap, match_any_unmodified_character, null, $fallthrough);