diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-10-10 02:48:05 -0400 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-10-10 02:48:05 -0400 |
commit | 798f26c7464a7071410a3c14b1e414ac53876cd6 (patch) | |
tree | bfad558859b96d56c45db9fded63c0bd7b5a6484 /common/content/mow.js | |
parent | 400ec6244bd900fb7ac0ec65758d25ce291ab8b7 (diff) | |
download | pentadactyl-798f26c7464a7071410a3c14b1e414ac53876cd6.tar.gz |
Hint processing mapping state magic stuff.
Diffstat (limited to 'common/content/mow.js')
-rw-r--r-- | common/content/mow.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/content/mow.js b/common/content/mow.js index aa4c5b76..6be1f2cd 100644 --- a/common/content/mow.js +++ b/common/content/mow.js @@ -325,6 +325,11 @@ var MOW = Module("mow", { mow.echo(mow.lastOutput, "Normal"); }); + mappings.add([modes.OUTPUT_MULTILINE], + ["<Esc>", "<C-[>"], + "Return to the previous mode", + function () { modes.pop(null, { fromEscape: true }); }); + let bind = function bind(keys, description, action, test, default_) { mappings.add([modes.OUTPUT_MULTILINE], keys, description, |