1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-28 09:45:48 +01:00

merge new :redraw command and changed 'linksearch' pattern modifiers

This commit is contained in:
Doug Kearns
2007-10-09 06:38:42 +00:00
parent 0a71af0d0a
commit bb41e28510
5 changed files with 36 additions and 5 deletions

View File

@@ -579,6 +579,14 @@ function Mappings() //{{{
"Whether the new buffer is activated, depends on the <code class=\"option\">'activate'</code> option."
}
));
addDefaultMap(new Map([vimperator.modes.NORMAL], ["<C-l>"],
function(count) { vimperator.commands.redraw(); },
{
short_help: "Redraw the screen",
help: "Works like <code class=\"command\">:redraw</code>.",
flags: Mappings.flags.COUNT
}
));
addDefaultMap(new Map(vimperator.modes.NORMAL, ["r"],
function() { vimperator.tabs.reload(getBrowser().mCurrentTab, false); },
{