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

@@ -512,7 +512,7 @@ function Buffer() //{{{
stylesheetSwitchAll(window.content, args);
},
{ completer: function (filter) completion.alternateStylesheet(filter) });
{ completer: function (context) completion.alternateStylesheet(context.filter) });
commands.add(["re[load]"],
"Reload current page",
@@ -564,7 +564,7 @@ function Buffer() //{{{
{
argCount: "?",
bang: true,
completer: function (filter, bang, args, context) completion.file(context)
completer: function (context) completion.file(context)
});
commands.add(["st[op]"],
@@ -578,7 +578,7 @@ function Buffer() //{{{
{
argCount: "?",
bang: true,
completer: function (filter, bang, args, context) completion.url(context, "bhf")
completer: function (context) completion.url(context, "bhf")
});
commands.add(["zo[om]"],