1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-01 08:52:26 +01:00
This commit is contained in:
Kris Maglione
2011-08-03 07:54:54 -04:00
parent 3adbaff83c
commit c62762c0e3
3 changed files with 6 additions and 15 deletions

View File

@@ -658,17 +658,10 @@ var Editor = Module("editor", {
mappings.add([modes.INPUT, modes.CARET],
["<*-CR>", "<*-BS>", "<*-Del>", "<*-Left>", "<*-Right>", "<*-Up>", "<*-Down>",
"<*-Home>", "<*-End>", "<*-PageUp>", "<*-PageDown>",
"<M-c>", "<M-v>"],
"<M-c>", "<M-v>", "<*-Tab>"],
"Handled by " + config.host,
function () Events.PASS_THROUGH);
mappings.add([modes.INSERT, modes.NORMAL],
["<Tab>"], "Select the next element in the tab sequence",
function () Events.PASS);
mappings.add([modes.INSERT, modes.NORMAL],
["<S-Tab>"], "Select the previous element in the tab sequence",
function () Events.PASS);
mappings.add([modes.INSERT],
["<Space>", "<Return>"], "Expand Insert mode abbreviation",
function () {