diff --git a/content/mappings.js b/content/mappings.js index bf016fa4..39cde99e 100644 --- a/content/mappings.js +++ b/content/mappings.js @@ -370,16 +370,12 @@ vimperator.Mappings = function () //{{{ // vimperator management addDefaultMap(new vimperator.Map(allModes, [""], - function () { vimperator.help(null); }, - { - shortHelp: "Open help window" - } + function () { vimperator.commands.help(); }, + { shortHelp: "Open help window" } )); addDefaultMap(new vimperator.Map(allModes, ["", ""], vimperator.events.onEscape, - { - shortHelp: "Focus content" - } + { shortHelp: "Focus content" } )); addDefaultMap(new vimperator.Map(noninsertModes, [":"], function () { vimperator.commandline.open(":", "", vimperator.modes.EX); },