From 572c5919798e858a58535acf6d67dcc92659befc Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 2 Oct 2010 02:39:41 +1000 Subject: [PATCH] Fix :command list output. --- common/content/commands.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/commands.js b/common/content/commands.js index 16b14bc1..7cb620d6 100644 --- a/common/content/commands.js +++ b/common/content/commands.js @@ -1066,14 +1066,14 @@ const Commands = Module("commands", { if (cmds.length > 0) commandline.commandOutput( - template.tabular(["", "Name", "Args", "Range", "Complete", "Definition"], ["padding-right: 2em;"]), + template.tabular(["", "Name", "Args", "Range", "Complete", "Definition"], ["padding-right: 2em;"], ([cmd.bang ? "!" : " ", cmd.name, cmd.argCount, cmd.count ? "0c" : "", completerToString(cmd.completer), cmd.replacementText || "function () { ... }"] - for ([, cmd] in Iterator(cmds)))); + for ([, cmd] in Iterator(cmds))))); else dactyl.echomsg("No user-defined commands found"); }