1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 22:08:00 +01:00
This commit is contained in:
Martin Stubenschrott
2008-02-01 14:12:48 +00:00
parent e84008a635
commit e2e42c83c8

View File

@@ -370,16 +370,12 @@ vimperator.Mappings = function () //{{{
// vimperator management
addDefaultMap(new vimperator.Map(allModes, ["<F1>"],
function () { vimperator.help(null); },
{
shortHelp: "Open help window"
}
function () { vimperator.commands.help(); },
{ shortHelp: "Open help window" }
));
addDefaultMap(new vimperator.Map(allModes, ["<Esc>", "<C-[>"],
vimperator.events.onEscape,
{
shortHelp: "Focus content"
}
{ shortHelp: "Focus content" }
));
addDefaultMap(new vimperator.Map(noninsertModes, [":"],
function () { vimperator.commandline.open(":", "", vimperator.modes.EX); },