1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 08:52:27 +01:00

quick fix for :help not working, CRASHES firefox however when issuing :help when :help is already open. -> need to look into that later

This commit is contained in:
Martin Stubenschrott
2007-12-12 01:39:16 +00:00
parent 32ecd9712c
commit e7aa6020a8

View File

@@ -193,16 +193,16 @@ vimperator.Mappings = function () //{{{
// NOTE: just normal mode for now
__iterator__: function ()
{
return mappingsIterator(vimperator.modes.NORMAL, main);
return mappingsIterator([vimperator.modes.NORMAL], main);
},
// FIXME:
// FIXME: unused?
getDefaultIterator: function (mode)
{
return mappingsIterator(mode, main);
},
// FIXME:
// FIXME: unused?
getUserIterator: function (mode)
{
return mappingsIterator(mode, user);