1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 07:27: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

@@ -293,7 +293,7 @@ const config = { //{{{
},
{
bang: true,
completer: function (filter, args, bang, context) completion.url(context)
completer: function (context) completion.url(context)
});
commands.add(["redr[aw]"],
@@ -345,7 +345,7 @@ const config = { //{{{
},
{
argCount: "+",
completer: function (filter) completion.sidebar(filter)
completer: function (context) completion.sidebar(context.filter)
});
commands.add(["winc[lose]", "wc[lose]"],
@@ -364,7 +364,7 @@ const config = { //{{{
else
liberator.open("about:blank", liberator.NEW_WINDOW);
},
{ completer: function (filter, bang, args, context) completion.url(context) });
{ completer: function (context) completion.url(context) });
/////////////////////////////////////////////////////////////////////////////}}}
////////////////////// OPTIONS /////////////////////////////////////////////////