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

Shuffle some key bindings and mode inheritance around.

This commit is contained in:
Kris Maglione
2011-03-14 13:05:15 -04:00
parent 0eb30aa83f
commit e6104b3029
3 changed files with 30 additions and 30 deletions

View File

@@ -76,7 +76,7 @@ var Modes = Module("modes", {
});
this.addMode("CARET", {
description: "Active when the caret is visible in the web content",
bases: [this.COMMAND]
bases: [this.NORMAL]
}, {
get pref() prefs.get("accessibility.browsewithcaret"),
@@ -113,7 +113,7 @@ var Modes = Module("modes", {
});
this.addMode("OUTPUT_MULTILINE", {
description: "Active when the multi-line output buffer is open",
bases: [this.COMMAND],
bases: [this.NORMAL],
});
this.addMode("INPUT", {