diff options
author | Kris Maglione <maglione.k@gmail.com> | 2010-12-30 23:26:28 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2010-12-30 23:26:28 -0500 |
commit | 8a26e3ca0e2ac1466873c885c2e0f533c8ed0024 (patch) | |
tree | 2427e6e59cc989bb794a8559c4f91b129941cd00 /common | |
parent | 2a218c27855fe5ac11f340776523830aa54c4ba6 (diff) | |
download | pentadactyl-8a26e3ca0e2ac1466873c885c2e0f533c8ed0024.tar.gz |
Fix entering digits in prompt mode. Release Pentadactyl 1.0 βeta 4.
Diffstat (limited to 'common')
-rw-r--r-- | common/content/modes.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/common/content/modes.js b/common/content/modes.js index 66b55c86..80b9c22e 100644 --- a/common/content/modes.js +++ b/common/content/modes.js @@ -123,7 +123,8 @@ var Modes = Module("modes", { // this._extended modes, can include multiple modes, and even main modes this.addMode("EX", { extended: true, - description: "Ex command mode, active when the command line is open for Ex commands" + description: "Ex command mode, active when the command line is open for Ex commands", + input: true }); this.addMode("HINTS", { extended: true, @@ -133,7 +134,8 @@ var Modes = Module("modes", { }); this.addMode("INPUT_MULTILINE", { extended: true, - hidden: true + hidden: true, + input: true }); this.addMode("MENU", { extended: true, @@ -144,7 +146,8 @@ var Modes = Module("modes", { }); // linewise visual mode this.addMode("PROMPT", { extended: true, - description: "Prompt mode, active when a prompt is open in the command line" + description: "Prompt mode, active when a prompt is open in the command line", + input: true }); this.push(this.NORMAL, 0, { |