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

Bunch more completion stuff. Add more/less indicators to completion listint.

This commit is contained in:
Kris Maglione
2008-11-26 03:22:13 +00:00
parent 2a3081f03f
commit f1a6bcc671
12 changed files with 290 additions and 317 deletions

View File

@@ -852,7 +852,7 @@ function Commands() //{{{
{
argCount: 2,
bang: true,
completer: function (context) completion.userCommand(context.filter),
completer: function (context) completion.userCommand(context),
options: [
[["-nargs"], commandManager.OPTION_STRING,
function (arg) /^[01*?+]$/.test(arg), ["0", "1", "*", "?", "+"]],
@@ -901,7 +901,7 @@ function Commands() //{{{
},
{
argCount: "1",
completer: function (context) completion.userCommand(context.filter)
completer: function (context) completion.userCommand(context)
});
//}}}