diff --git a/common/content/commands.js b/common/content/commands.js index 4f0be074..095f9e4b 100644 --- a/common/content/commands.js +++ b/common/content/commands.js @@ -1447,6 +1447,15 @@ var Commands = Module("commands", { }, { argCount: "0" }); + commands.add(["comp[letions]"], + "List the completion results for a given command substring", + function (args) { completion.listCompleter("ex", args[0]); }, + { + argCount: "1", + completer: function (context, args) completion.ex(context), + literal: 0 + }); + commands.add(["delc[ommand]"], "Delete the specified user-defined command", function (args) { diff --git a/common/locale/en-US/various.xml b/common/locale/en-US/various.xml index 46814699..b68b72b6 100644 --- a/common/locale/en-US/various.xml +++ b/common/locale/en-US/various.xml @@ -14,6 +14,17 @@
+ List the completion results for a given command substring. +
+