1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-23 00:13:32 +01:00

Frob tests.

This commit is contained in:
Kris Maglione
2011-02-12 15:27:33 -05:00
parent ff2da13c70
commit 8277d4b0c4
5 changed files with 65 additions and 35 deletions

View File

@@ -344,8 +344,10 @@ var Config = Module("config", ConfigBase, {
modes: function (dactyl, modules, window) {
const { config, modes } = modules;
config.ignoreKeys = {
"<Up>": modes.NORMAL | modes.INSERT,
"<Down>": modes.NORMAL | modes.INSERT
"<Return>": modes.NORMAL,
"<Space>": modes.NORMAL,
"<Up>": modes.NORMAL,
"<Down>": modes.NORMAL
};
config.modes.forEach(function (mode) { modes.addMode.apply(this, mode); });
},