diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-01-18 20:13:24 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-01-18 20:13:24 -0500 |
commit | 35f7fb4aa0be3de5841861d7e570b51b0f990f85 (patch) | |
tree | 6c825df013585e20fbd839159896aa95f3f07ec5 /common/content/modes.js | |
parent | 7a438bacef97db4eb5b3492b2b0dcc0035020761 (diff) | |
download | pentadactyl-35f7fb4aa0be3de5841861d7e570b51b0f990f85.tar.gz |
Fix typing numbers in input modes.
Diffstat (limited to 'common/content/modes.js')
-rw-r--r-- | common/content/modes.js | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/common/content/modes.js b/common/content/modes.js index 2137e17d..b0de047e 100644 --- a/common/content/modes.js +++ b/common/content/modes.js @@ -36,12 +36,14 @@ var Modes = Module("modes", { this.boundProperties = {}; this.addMode("BASE", { - description: "The base mode for all other modes" + description: "The base mode for all other modes", + count: false }); this.addMode("MAIN", { char: "m", description: "The base mode for most other modes", - bases: [this.BASE] + bases: [this.BASE], + count: false }); this.addMode("COMMAND", { description: "The base mode for most modes which accept commands rather than input", @@ -100,7 +102,9 @@ var Modes = Module("modes", { this.addMode("INPUT", { char: "I", - description: "The base mode for input modes, including Insert and Command Line" + description: "The base mode for input modes, including Insert and Command Line", + bases: [this.BASE], + input: true }); this.addMode("INSERT", { char: "i", |