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

Add missing <Tab>/<S-Tab> bindings.

This commit is contained in:
Kris Maglione
2011-03-12 17:16:14 -05:00
parent 6e909fb544
commit 2a84a31f3a

View File

@@ -661,6 +661,13 @@ var Editor = Module("editor", {
"Handled by " + config.host,
function () Events.PASS);
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 () {