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

More completion stuff

This commit is contained in:
Kris Maglione
2008-11-22 09:56:57 +00:00
parent ef0b517d3f
commit 49a559866c
14 changed files with 58 additions and 56 deletions

View File

@@ -208,7 +208,7 @@ function IO() //{{{
},
{
argCount: "?",
completer: function (filter, bang, args, context) completion.file(context, true),
completer: function (context) completion.file(context, true),
literal: true
});
@@ -268,7 +268,7 @@ function IO() //{{{
{
argCount: "?",
bang: true,
completer: function (filter, bang, args, context) completion.file(context, true)
completer: function (context) completion.file(context, true)
});
commands.add(["runt[ime]"],
@@ -301,7 +301,7 @@ function IO() //{{{
{
argCount: "1",
bang: true,
completer: function (filter, bang, args, context) completion.file(context, true)
completer: function (context) completion.file(context, true)
});
commands.add(["!", "run"],
@@ -339,7 +339,7 @@ function IO() //{{{
},
{
bang: true,
completer: function (filter) completion.shellCommand(filter)
completer: function (context) completion.shellCommand(filter)
});
/////////////////////////////////////////////////////////////////////////////}}}