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

swapped :help and :Help, if you don't find yet help in :help, try :Help, and convert it to asciidoc

This commit is contained in:
Martin Stubenschrott
2008-01-23 14:42:50 +00:00
parent 4153597a02
commit af927e89c5
6 changed files with 27 additions and 17 deletions

View File

@@ -1099,10 +1099,10 @@ vimperator.Commands = function () //{{{
help: "Open a GUI dialog where you can select the printer, number of copies, orientation, etc."
}
));
commandManager.add(new vimperator.Command(["h[elp]"],
commandManager.add(new vimperator.Command(["H[elp]"],
function (args, special, count, modifiers) { vimperator.help(args, special, null, modifiers); },
{
usage: ["h[elp] {subject}"],
usage: ["H[elp] {subject}"],
shortHelp: "Open the help window",
help: "You can jump to the specified <code class=\"argument\">{subject}</code> with <code class=\"command\">:help {subject}</code>.<br/>" +
"Make sure you use the full Vim notation when jumping to <code class=\"argument\">{subject}</code>. This means:<br/>" +
@@ -1115,10 +1115,10 @@ vimperator.Commands = function () //{{{
completer: function (filter) { return vimperator.completion.help(filter); }
}
));
commandManager.add(new vimperator.Command(["H[elp]"],
commandManager.add(new vimperator.Command(["h[elp]"],
function (args, special, count, modifiers) { vimperator.Help((args || "intro")); },
{
shortHelp: "Temporary function, will replace :help at some time",
shortHelp: "Not all help converted to new format, use :Help if you don't find your information.",
completer: function (filter) { return vimperator.completion.Help(filter); }
}
));