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

@@ -684,7 +684,7 @@ function Mail() //{{{
SelectFolder(folder.URI);
},
{
completer: function (filter) getFolderCompletions(filter),
completer: function (context) getFolderCompletions(context.filter),
count: true
});
@@ -726,12 +726,12 @@ function Mail() //{{{
commands.add(["copy[to]"],
"Copy selected messages",
function (args) { moveOrCopy(true, args.string); },
{ completer: function (filter) getFolderCompletions(filter) });
{ completer: function (context) getFolderCompletions(context.filter) });
commands.add(["move[to]"],
"Move selected messages",
function (args) { moveOrCopy(false, args.string); },
{ completer: function (filter) getFolderCompletions(filter) });
{ completer: function (context) getFolderCompletions(context.filter) });
commands.add(["empty[trash]"],
"Empty trash of the current account",