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

Add :style and :delstyle commands. Need to write NEWS and :help entries, I suppose

This commit is contained in:
Kris Maglione
2008-10-03 23:14:30 +00:00
parent 268395a0fc
commit 1bb07747c4
5 changed files with 177 additions and 50 deletions

View File

@@ -666,16 +666,7 @@ liberator.Events = function () //{{{
function (args)
{
XML.prettyPrinting = false;
var str = <table>
{
liberator.template.map2(liberator.events.getMacros(args),
function (macro, keys)
<tr>
<td>{macro}</td>
<td>{keys}</td>
</tr>)
}
</table>.toXMLString();
var str = liberator.template.tabular(["Macro", "Keys"], liberator.events.getMacros(args));
liberator.echo(str, liberator.commandline.FORCE_MULTILINE);
},
{