From 17a37d5864a22ed091fdb68c3fcb7c667c331067 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sun, 23 Sep 2007 13:30:48 +0000 Subject: [PATCH] allow all unknown key mappings to be passed through to FF --- chrome/content/vimperator/events.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chrome/content/vimperator/events.js b/chrome/content/vimperator/events.js index 7538038d..653e561e 100644 --- a/chrome/content/vimperator/events.js +++ b/chrome/content/vimperator/events.js @@ -655,9 +655,9 @@ function Events() //{{{ vimperator.input.pendingArgMap = null; vimperator.input.pendingMotionMap = null; - if (vimperator.hasMode(vimperator.modes.COMMAND_LINE)) - stop = false; // command was not a vimperator command, maybe it is a firefox command - else + stop = false; // command was not a vimperator command, maybe it is a firefox command + + if (!vimperator.hasMode(vimperator.modes.COMMAND_LINE)) vimperator.beep(); }