1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
/**
* (C) Copyright 2008 Jeremy Maitin-Shepard
*
* Use, modification, and distribution are subject to the terms specified in the
* COPYING file.
**/
define_keymap("content_buffer_quote_next_keymap");
define_keymap("content_buffer_quote_keymap");
define_key(content_buffer_quote_next_keymap, match_any_key, "content-buffer-update-input-mode-for-focus", $fallthrough);
define_key(content_buffer_quote_keymap, "escape", "content-buffer-update-input-mode-for-focus", null);
define_key(content_buffer_quote_keymap, match_any_key, null, $fallthrough);
|