File: isearch.js

package info (click to toggle)
conkeror 0.9.2%2Bgit100804-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,680 kB
  • ctags: 1,182
  • sloc: sh: 547; ansic: 272; xml: 107; makefile: 79
file content (21 lines) | stat: -rw-r--r-- 858 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * (C) Copyright 2004-2007 Shawn Betts
 * (C) Copyright 2007-2009 John J. Foerch
 * (C) Copyright 2007-2008 Jeremy Maitin-Shepard
 *
 * Use, modification, and distribution are subject to the terms specified in the
 * COPYING file.
**/

define_fallthrough(isearch_keymap, match_any_unmodified_character);

define_key(isearch_keymap, match_any_unmodified_character, null, $fallthrough);

define_key(isearch_keymap, "back_space",    "isearch-backspace");
define_key(isearch_keymap, "C-r",           "isearch-continue-backward");
define_key(isearch_keymap, "C-s",           "isearch-continue-forward");
define_key(isearch_keymap, "C-g",           "minibuffer-abort");
define_key(isearch_keymap, "escape",        "minibuffer-abort");
define_key(isearch_keymap, "M-escape",      "minibuffer-abort");

define_key(isearch_keymap, match_any_key, "isearch-done");