summaryrefslogtreecommitdiff
path: root/common/content/modes.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2011-01-18 20:13:24 -0500
committerKris Maglione <maglione.k@gmail.com>2011-01-18 20:13:24 -0500
commit35f7fb4aa0be3de5841861d7e570b51b0f990f85 (patch)
tree6c825df013585e20fbd839159896aa95f3f07ec5 /common/content/modes.js
parent7a438bacef97db4eb5b3492b2b0dcc0035020761 (diff)
downloadpentadactyl-35f7fb4aa0be3de5841861d7e570b51b0f990f85.tar.gz
Fix typing numbers in input modes.
Diffstat (limited to 'common/content/modes.js')
-rw-r--r--common/content/modes.js10
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",