1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-19 18:18:00 +01:00

Fix typing numbers in input modes.

This commit is contained in:
Kris Maglione
2011-01-18 20:13:24 -05:00
parent 7a438bacef
commit 35f7fb4aa0
2 changed files with 9 additions and 5 deletions

View File

@@ -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",