1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-19 21:54:13 +01:00

allow all unknown key mappings to be passed through to FF

This commit is contained in:
Doug Kearns
2007-09-23 13:15:18 +00:00
parent 0a7fa0ed82
commit af04463585

View File

@@ -735,9 +735,10 @@ function Events() //{{{
vimperator.input.pendingArgMap = null;
vimperator.input.pendingMotionMap = null;
if (vimperator.mode == vimperator.modes.INSERT || vimperator.mode == 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
// TODO: see if this check is needed or are all motion commands already mapped in these modes?
if (vimperator.mode != vimperator.modes.INSERT && vimperator.mode != vimperator.modes.COMMAND_LINE)
vimperator.beep();
}