mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-04 10:04:12 +01:00
Clarify some arg counts and some related tests.
--HG-- extra : rebase_source : e50c757b46406988b0bfa0c179ec1e9bad21a446
This commit is contained in:
@@ -453,7 +453,7 @@ const Mail = Module("mail", {
|
||||
"Copy selected messages",
|
||||
function (args) { mail._moveOrCopy(true, args.literalArg); },
|
||||
{
|
||||
argCount: 1,
|
||||
argCount: "1",
|
||||
completer: function (context) completion.mailFolder(context),
|
||||
literal: 0
|
||||
});
|
||||
@@ -462,7 +462,7 @@ const Mail = Module("mail", {
|
||||
"Move selected messages",
|
||||
function (args) { mail._moveOrCopy(false, args.literalArg); },
|
||||
{
|
||||
argCount: 1,
|
||||
argCount: "1",
|
||||
completer: function (context) completion.mailFolder(context),
|
||||
literal: 0
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user