1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 00:17:57 +01:00

Kill AUTOCOMPLETE mode with <C-c>.

This commit is contained in:
Kris Maglione
2011-09-28 21:47:44 -04:00
parent 0338509b99
commit 0c9f91ab97

View File

@@ -615,7 +615,7 @@ var Modes = Module("modes", {
"Return to the previous mode", "Return to the previous mode",
function () { modes.pop(null, { fromEscape: true }); }); function () { modes.pop(null, { fromEscape: true }); });
mappings.add([modes.MENU], ["<C-c>"], mappings.add([modes.AUTOCOMPLETE, modes.MENU], ["<C-c>"],
"Leave Menu mode", "Leave Menu mode",
function () { modes.pop(); }); function () { modes.pop(); });