From d0484b153aa5fa80c415f4025aef493eba167e12 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Sat, 12 Oct 2024 00:21:46 +0200 Subject: 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 Tested-by: Bojan Gabric Tested-by: Jason Cox Acked-by: Tim Culverhouse --- commands/msgview/open.go | 2 +- commands/msgview/save.go | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'commands/msgview') diff --git a/commands/msgview/open.go b/commands/msgview/open.go index 7b23423d..4293b7e4 100644 --- a/commands/msgview/open.go +++ b/commands/msgview/open.go @@ -14,7 +14,7 @@ import ( ) type Open struct { - Delete bool `opt:"-d"` + Delete bool `opt:"-d" desc:"Delete temp file after the opener exits."` Cmd string `opt:"..." required:"false"` } diff --git a/commands/msgview/save.go b/commands/msgview/save.go index 0310ed0e..349a8233 100644 --- a/commands/msgview/save.go +++ b/commands/msgview/save.go @@ -18,11 +18,11 @@ import ( ) type Save struct { - Force bool `opt:"-f"` - CreateDirs bool `opt:"-p"` - Attachments bool `opt:"-a"` - AllAttachments bool `opt:"-A"` - Path string `opt:"path" required:"false" complete:"CompletePath"` + Force bool `opt:"-f" desc:"Overwrite destination path."` + CreateDirs bool `opt:"-p" desc:"Create missing directories."` + Attachments bool `opt:"-a" desc:"Save all attachments parts."` + AllAttachments bool `opt:"-A" desc:"Save all named parts."` + Path string `opt:"path" required:"false" complete:"CompletePath" desc:"Target file path."` } func init() { -- cgit