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

Totally unfinished, but first attempts with a temporary :Help command to use static html pages for the help

This commit is contained in:
Martin Stubenschrott
2008-01-03 14:40:03 +00:00
parent 488e55390c
commit 2aa72922a4
8 changed files with 1134 additions and 3 deletions

View File

@@ -1032,6 +1032,13 @@ vimperator.Commands = function () //{{{
completer: function (filter) { return vimperator.completion.help(filter); }
}
));
commandManager.add(new vimperator.Command(["H[elp]"],
function (args, special, count, modifiers) { vimperator.open("chrome://vimperator/locale/" + (args || "introduction") + ".html"); },
{
shortHelp: "Temporary function, will replace :help at some time",
completer: function (filter) { return [["introduction", ""], ["options", ""]]; }
}
));
commandManager.add(new vimperator.Command(["hist[ory]", "hs"],
function (args, special) { vimperator.history.list(args, special); },
{
@@ -2017,7 +2024,8 @@ vimperator.Commands = function () //{{{
{
usage: ["se[t][!]", "se[t] {option}?", "se[t] [no]{option}", "se[t] {option}[+-]={value}", "se[t] {option}! | inv{option}", "se[t] {option}&"],
shortHelp: "Set an option",
help: "Permanently change an option.<br/>" +
help: "Temporarily change an option for the current session only. If you want " +
"to change an option permanently, put it in your ~/.vimperatorrc configuration file.<br/>" +
"<code class=\"command\">:set</code> without an argument shows all Vimperator options which differ from their default values.<br/>" +
"<code class=\"command\">:set!</code> without an argument shows all about:config preferences which differ from their default values.<br/>" +
"There are three types of options: boolean, number and string. " +