1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 02:34:12 +01:00

Fix mapping : in insert modes.

This commit is contained in:
Kris Maglione
2011-01-18 19:56:10 -05:00
parent 4797720df9
commit 7a438bacef
2 changed files with 36 additions and 22 deletions

View File

@@ -1736,7 +1736,7 @@ var CommandLine = Module("commandline", {
function () { events.feedkeys("<S-Down>"); });
// add the ":" mapping in all but insert mode mappings
mappings.add(modes.matchModes({ extended: false, input: false }),
mappings.add(modes.COMMAND,
[":"], "Enter command-line mode",
function () { commandline.open(":", "", modes.EX); });