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

Fix Firefox exploding on <C-i>

This commit is contained in:
Kris Maglione
2011-08-09 08:52:41 -04:00
parent 55087730e0
commit 491c9a0573

View File

@@ -619,7 +619,8 @@ var Editor = Module("editor", {
bind(["<S-Insert>"], "Insert clipboard/selection",
function () { editor.pasteClipboard(); });
bind(["<C-i>"], "Edit text field with an external editor",
mappings.add([modes.INPUT],
["<C-i>"], "Edit text field with an external editor",
function () { editor.editFieldExternally(); });
bind(["<C-t>"], "Edit text field in Vi mode",