From 9c2f01bfea84795174aa8a67dceadb2c756c4675 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 16 Oct 2009 00:25:09 +1100 Subject: [PATCH] Remove no-opping of arbitrary bindings in INSERT mode. This list of keys is completely arbitrary, a small subset of Firefox's supposedly undesirable bindings, and still manages to break three default bindings on GTK/Firefox. INSERT mode is essentially a pass-through mode. If that's not desirable then a new enhancement issue should be opened. Fixes issue #58. --- common/content/editor.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/common/content/editor.js b/common/content/editor.js index 74c9d1a0..45c8bebf 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -262,11 +262,6 @@ function Editor() //{{{ addMotionMap("y"); // yank // insert mode mappings - mappings.add(myModes, - ["", "", "", "", ""], - "Ignore certain " + config.hostApplication + " key bindings", - function () { /*liberator.beep();*/ }); - mappings.add(myModes, [""], "Delete previous word", function () { editor.executeCommand("cmd_deleteWordBackward", 1); });