diff --git a/common/content/editor.js b/common/content/editor.js index 0244d5f9..32052505 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -611,7 +611,12 @@ const Editor = Module("editor", { mappings.add([modes.INSERT], [""], "Edit text field in Vi mode", - function () { modes.push(modes.TEXTAREA); }); + function () { + if (!editor.isTextArea) + modes.push(modes.TEXTAREA); + else + dactyl.beep(); + }); mappings.add([modes.INSERT], ["", ""], "Expand insert mode abbreviation",