1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-16 01:03:31 +02:00

initial Command/Commands implementation - replacing g_commands

This commit is contained in:
Doug Kearns
2007-06-06 06:42:49 +00:00
parent 4f6ab64000
commit e47ad6187e
5 changed files with 711 additions and 610 deletions

View File

@@ -458,15 +458,14 @@ function Search()
}
// @todo nicer way to register commands?
g_commands.push(
[
["noh[lsearch]"],
["noh[lsearch]"],
"Clear the current selection",
"",
vimperator.commands.add(new Command(["noh[lsearch]"],
clearSelection,
null
]
);
{
usage: ["noh[lsearch]"],
short_help: "Clear the current selection",
help: null,
completer: null
}
));
// vim: set fdm=marker sw=4 ts=4 et: