1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-17 07:25:45 +01:00

Add to TODO, etc.

This commit is contained in:
Kris Maglione
2009-05-23 21:24:57 -04:00
parent b8aab050e9
commit ce120a7f9d
3 changed files with 14 additions and 2 deletions

View File

@@ -47,6 +47,8 @@ const configbase = { //{{{
ignoreKeys: {},
modes: [],
optionDefaults: {},
scripts: [],

View File

@@ -288,8 +288,7 @@ const modes = (function () //{{{
self.addMode("LINE", true); // linewise visual mode
self.addMode("PROMPT", true);
if (config.modes)
config.modes.forEach(function (mode) { self.addMode.apply(self, mode) });
config.modes.forEach(function (mode) { self.addMode.apply(self, mode) });
return self;
//}}}