From abe228b14d97d8d47e8ff4406de387fac45cfe68 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Sun, 22 Oct 2023 23:23:18 +0200 Subject: 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 Reviewed-by: Koni Marti Tested-by: Moritz Poldrack Tested-by: Inwit --- commands/choose.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'commands/choose.go') diff --git a/commands/choose.go b/commands/choose.go index 4e2007fd..19958dce 100644 --- a/commands/choose.go +++ b/commands/choose.go @@ -18,10 +18,6 @@ func (Choose) Aliases() []string { return []string{"choose"} } -func (Choose) Complete(args []string) []string { - return nil -} - func (Choose) Execute(args []string) error { if len(args) < 5 || len(args)%4 != 1 { return chooseUsage(args[0]) -- cgit