aboutsummaryrefslogtreecommitdiffstats
path: root/commands/msg/move.go
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2024-10-12 00:21:46 +0200
committerRobin Jarry <robin@jarry.cc>2024-10-23 10:22:51 +0200
commitd0484b153aa5fa80c415f4025aef493eba167e12 (patch)
tree663b4d52d6f7e070477963346e3e3699eca8c384 /commands/msg/move.go
parent26033eaecfe6733b2f911dea283433df11773256 (diff)
downloadaerc-d0484b153aa5fa80c415f4025aef493eba167e12.tar.gz
completion: add command option descriptions
Add `desc:""` struct field tags in all command arguments where it makes sense. The description values will be returned along with completion choices. Implements: https://todo.sr.ht/~rjarry/aerc/271 Signed-off-by: Robin Jarry <robin@jarry.cc> Tested-by: Bojan Gabric <bojan@bojangabric.com> Tested-by: Jason Cox <me@jasoncarloscox.com> Acked-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'commands/msg/move.go')
-rw-r--r--commands/msg/move.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/msg/move.go b/commands/msg/move.go
index 63473b13..80f13a22 100644
--- a/commands/msg/move.go
+++ b/commands/msg/move.go
@@ -17,10 +17,10 @@ import (
)
type Move struct {
- CreateFolders bool `opt:"-p"`
- Account string `opt:"-a" complete:"CompleteAccount"`
- MultiFileStrategy *types.MultiFileStrategy `opt:"-m" action:"ParseMFS" complete:"CompleteMFS"`
- Folder string `opt:"folder" complete:"CompleteFolder"`
+ CreateFolders bool `opt:"-p" desc:"Create missing folders if required."`
+ Account string `opt:"-a" complete:"CompleteAccount" desc:"Move to specified account."`
+ MultiFileStrategy *types.MultiFileStrategy `opt:"-m" action:"ParseMFS" complete:"CompleteMFS" desc:"Multi-file strategy."`
+ Folder string `opt:"folder" complete:"CompleteFolder" desc:"Target folder."`
}
func init() {