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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user