diff options
author | Robin Jarry <robin@jarry.cc> | 2023-10-22 23:23:18 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-10-28 19:25:10 +0200 |
commit | abe228b14d97d8d47e8ff4406de387fac45cfe68 (patch) | |
tree | 56117403d1ae32d7253f86bab01a944a3cf225b9 /commands/eml.go | |
parent | 30851656591293ed2e19340ab78c937855a11143 (diff) | |
download | aerc-abe228b14d97d8d47e8ff4406de387fac45cfe68.tar.gz |
commands: use completion from go-opt
Implement command completion with complete struct field tags from the
get-opt library introduced earlier.
Changelog-changed: Improved command completion.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Reviewed-by: Koni Marti <koni.marti@gmail.com>
Tested-by: Moritz Poldrack <moritz@poldrack.dev>
Tested-by: Inwit <inwit@sindominio.net>
Diffstat (limited to 'commands/eml.go')
-rw-r--r-- | commands/eml.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/commands/eml.go b/commands/eml.go index adacd05b..fe735243 100644 --- a/commands/eml.go +++ b/commands/eml.go @@ -5,14 +5,13 @@ import ( "fmt" "io" "os" - "strings" "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/lib" ) type Eml struct { - Path string `opt:"path" required:"false"` + Path string `opt:"path" required:"false" complete:"CompletePath"` } func init() { @@ -23,8 +22,8 @@ func (Eml) Aliases() []string { return []string{"eml", "preview"} } -func (Eml) Complete(args []string) []string { - return CompletePath(strings.Join(args, " ")) +func (*Eml) CompletePath(arg string) []string { + return CompletePath(arg) } func (e Eml) Execute(args []string) error { |