From 8a26e3ca0e2ac1466873c885c2e0f533c8ed0024 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Thu, 30 Dec 2010 23:26:28 -0500 Subject: [PATCH] =?UTF-8?q?Fix=20entering=20digits=20in=20prompt=20mode.?= =?UTF-8?q?=20Release=20Pentadactyl=201.0=20=CE=B2eta=204.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/content/modes.js | 9 ++++++--- 1 file 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, {