mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-23 10:05:46 +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:
@@ -193,16 +193,16 @@ vimperator.Mappings = function () //{{{
|
|||||||
// NOTE: just normal mode for now
|
// NOTE: just normal mode for now
|
||||||
__iterator__: function ()
|
__iterator__: function ()
|
||||||
{
|
{
|
||||||
return mappingsIterator(vimperator.modes.NORMAL, main);
|
return mappingsIterator([vimperator.modes.NORMAL], main);
|
||||||
},
|
},
|
||||||
|
|
||||||
// FIXME:
|
// FIXME: unused?
|
||||||
getDefaultIterator: function (mode)
|
getDefaultIterator: function (mode)
|
||||||
{
|
{
|
||||||
return mappingsIterator(mode, main);
|
return mappingsIterator(mode, main);
|
||||||
},
|
},
|
||||||
|
|
||||||
// FIXME:
|
// FIXME: unused?
|
||||||
getUserIterator: function (mode)
|
getUserIterator: function (mode)
|
||||||
{
|
{
|
||||||
return mappingsIterator(mode, user);
|
return mappingsIterator(mode, user);
|
||||||
|
|||||||
Reference in New Issue
Block a user