1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-29 22:05:46 +01:00

macro renamings

This commit is contained in:
Marco Candrian
2007-12-16 22:18:04 +00:00
parent 6d9d3ace05
commit ffa5ad747e
2 changed files with 18 additions and 18 deletions

View File

@@ -1293,17 +1293,17 @@ vimperator.Mappings = function () //{{{
addDefaultMap(new vimperator.Map([vimperator.modes.NORMAL], ["q"],
function (arg) { vimperator.events.startRecording(arg); },
{
shortHelp: "record a macro into a register",
help: "Record typed characters into register {0-9a-zA-Z} (uppercase to append)." +
shortHelp: "record a keysequence into a macro",
help: "Available macros are {0-9a-zA-Z} (uppercase to append)." +
"type 'q' to stop recording.",
flags: vimperator.Mappings.flags.ARGUMENT
}
));
addDefaultMap(new vimperator.Map([vimperator.modes.NORMAL], ["@"],
function (arg) { vimperator.events.playRegister(arg); },
function (arg) { vimperator.events.playMacro(arg); },
{
shortHelp: "Execute the contents of register {0-9a-z}. @@ repeats the previous @{0-9a-z}",
shortHelp: "Execute the contents of macro {0-9a-z}. @@ repeats the previous @{0-9a-z}",
flags: vimperator.Mappings.flags.ARGUMENT
}
));