mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-03 12:45:47 +01:00
Fix entering digits in prompt mode. Release Pentadactyl 1.0 βeta 4.
This commit is contained in:
@@ -123,7 +123,8 @@ var Modes = Module("modes", {
|
|||||||
// this._extended modes, can include multiple modes, and even main modes
|
// this._extended modes, can include multiple modes, and even main modes
|
||||||
this.addMode("EX", {
|
this.addMode("EX", {
|
||||||
extended: true,
|
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", {
|
this.addMode("HINTS", {
|
||||||
extended: true,
|
extended: true,
|
||||||
@@ -133,7 +134,8 @@ var Modes = Module("modes", {
|
|||||||
});
|
});
|
||||||
this.addMode("INPUT_MULTILINE", {
|
this.addMode("INPUT_MULTILINE", {
|
||||||
extended: true,
|
extended: true,
|
||||||
hidden: true
|
hidden: true,
|
||||||
|
input: true
|
||||||
});
|
});
|
||||||
this.addMode("MENU", {
|
this.addMode("MENU", {
|
||||||
extended: true,
|
extended: true,
|
||||||
@@ -144,7 +146,8 @@ var Modes = Module("modes", {
|
|||||||
}); // linewise visual mode
|
}); // linewise visual mode
|
||||||
this.addMode("PROMPT", {
|
this.addMode("PROMPT", {
|
||||||
extended: true,
|
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, {
|
this.push(this.NORMAL, 0, {
|
||||||
|
|||||||
Reference in New Issue
Block a user