1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 16:57:59 +01:00

Fix t_p broken in revision 650be38ccc54. Closes issue #391.

This commit is contained in:
Kris Maglione
2011-02-19 15:06:58 -05:00
parent 83e8d068c2
commit 4297b54d7a
4 changed files with 15 additions and 18 deletions

View File

@@ -1383,25 +1383,22 @@ var CommandLine = Module("commandline", {
modes.addMode("COMMAND_LINE", {
char: "c",
description: "Active when the command line is focused",
input: true,
insert: true,
ownsFocus: true,
get mappingSelf() commandline.commandSession
});
// this._extended modes, can include multiple modes, and even main modes
modes.addMode("EX", {
description: "Ex command mode, active when the command line is open for Ex commands",
bases: [modes.COMMAND_LINE],
input: true
bases: [modes.COMMAND_LINE]
});
modes.addMode("PROMPT", {
description: "Active when a prompt is open in the command line",
bases: [modes.COMMAND_LINE],
input: true
bases: [modes.COMMAND_LINE]
});
modes.addMode("INPUT_MULTILINE", {
bases: [modes.INSERT],
input: true
bases: [modes.INSERT]
});
},
mappings: function init_mappings() {