1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 21:14:11 +01:00

allow all unknown key mappings to be passed through to FF

This commit is contained in:
Doug Kearns
2007-09-23 13:30:48 +00:00
parent 6b3df3408a
commit 17a37d5864

View File

@@ -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();
}