1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-01 08:52:26 +01:00

Fix escaping from Textarea mode in input fields.

When escaping from Textarea mode in input fields, and also text areas if
'insertmode' is set, return to Insert mode.
This commit is contained in:
Doug Kearns
2009-10-11 01:38:11 +11:00
parent 55c013366d
commit 29de612097
5 changed files with 41 additions and 10 deletions

View File

@@ -320,7 +320,7 @@ function Editor() //{{{
// FIXME: <esc> does not work correctly
mappings.add([modes.INSERT],
["<C-t>"], "Edit text field in vi mode",
["<C-t>"], "Edit text field in Vi mode",
function () { liberator.mode = modes.TEXTAREA; });
mappings.add([modes.INSERT],