1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 10:57:59 +01:00

* :redraw and ctrl-l commands

* \u\U changed to \l\L
This commit is contained in:
Martin Stubenschrott
2007-10-08 13:21:21 +00:00
parent fc0409b493
commit ad5138cf91
5 changed files with 27 additions and 5 deletions

View File

@@ -628,6 +628,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); },
{