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

change :viusage/:exusage to jump to the appropriate help tag - special versions

now exhibit the old behaviour
This commit is contained in:
Doug Kearns
2008-09-14 15:26:54 +00:00
parent e623f529f9
commit f36d0848e1
3 changed files with 40 additions and 20 deletions

2
NEWS
View File

@@ -1,6 +1,8 @@
<pre>
2008-XX-XX:
* version 2.0 (probably)
* IMPORTANT: :viusage and :exusage now jump to the help index, use the
special versions for the old behavior
* IMPORTANT: renamed Startup and Quit autocmd events to VimperatorEnter and
VimperatorLeave respectively
* add :scriptnames

View File

@@ -266,18 +266,26 @@ const liberator = (function () //{{{
liberator.commands.add(["exu[sage]"],
"List all Ex commands with a short description",
function ()
function (args, special)
{
var usage = "<table>";
for (let command in liberator.commands)
if (!special)
{
usage += "<tr><td style=\"padding-right: 20px\" class=\"hl-Title\"> :" +
liberator.util.escapeHTML(command.name) + "</td><td>" +
liberator.util.escapeHTML(command.description) + "</td></tr>";
liberator.help("ex-cmd-index");
}
usage += "</table>";
else
{
// TODO: clicking on these should open the help
var usage = "<table>";
for (let command in liberator.commands)
{
usage += "<tr><td style=\"padding-right: 20px\" class=\"hl-Title\"> :" +
liberator.util.escapeHTML(command.name) + "</td><td>" +
liberator.util.escapeHTML(command.description) + "</td></tr>";
}
usage += "</table>";
liberator.echo(usage, liberator.commandline.FORCE_MULTILINE);
liberator.echo(usage, liberator.commandline.FORCE_MULTILINE);
}
},
{ argCount: "0" });
@@ -479,18 +487,26 @@ const liberator = (function () //{{{
liberator.commands.add(["viu[sage]"],
"List all mappings with a short description",
function (args, special, count, modifiers)
function (args, special)
{
var usage = "<table>";
for (let mapping in liberator.mappings)
if (!special)
{
usage += "<tr><td style=\"padding-right: 20px\" class=\"hl-Title\"> " +
liberator.util.escapeHTML(mapping.names[0]) + "</td><td>" +
liberator.util.escapeHTML(mapping.description) + "</td></tr>";
liberator.help("normal-index");
}
usage += "</table>";
else
{
// TODO: clicking on these should open the help
var usage = "<table>";
for (let mapping in liberator.mappings)
{
usage += "<tr><td style=\"padding-right: 20px\" class=\"hl-Title\"> " +
liberator.util.escapeHTML(mapping.names[0]) + "</td><td>" +
liberator.util.escapeHTML(mapping.description) + "</td></tr>";
}
usage += "</table>";
liberator.echo(usage, liberator.commandline.FORCE_MULTILINE);
liberator.echo(usage, liberator.commandline.FORCE_MULTILINE);
}
},
{ argCount: "0" });
}

View File

@@ -58,16 +58,18 @@ ____________________________________________________________________________
|:exu| |:exusage| +
||:exu[sage]||
||:exu[sage][!]||
________________________________________________________________________________
Show help on Ex commands. Added to simulate the Nvi command.
Show help on Ex commands. Added to simulate the Nvi command. If [!] is given
then the help is listed in the command output window.
________________________________________________________________________________
|:viu| |:viusage| +
||:viu[sage]||
||:viu[sage][!]||
________________________________________________________________________________
Show help on Normal mode commands. Added to simulate the Nvi command.
Show help on Normal mode commands. Added to simulate the Nvi command. If [!] is
given then the help is listed in the command output window.
________________________________________________________________________________