mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 02:28:00 +01:00
Fix Firefox exploding on <C-i>
This commit is contained in:
@@ -619,8 +619,9 @@ var Editor = Module("editor", {
|
||||
bind(["<S-Insert>"], "Insert clipboard/selection",
|
||||
function () { editor.pasteClipboard(); });
|
||||
|
||||
bind(["<C-i>"], "Edit text field with an external editor",
|
||||
function () { editor.editFieldExternally(); });
|
||||
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",
|
||||
function () {
|
||||
|
||||
Reference in New Issue
Block a user