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/account/split.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'commands/account/split.go') diff --git a/commands/account/split.go b/commands/account/split.go index 4774297f..8690d99a 100644 --- a/commands/account/split.go +++ b/commands/account/split.go @@ -33,10 +33,6 @@ func (Split) Aliases() []string { return []string{"split", "vsplit", "hsplit"} } -func (Split) Complete(args []string) []string { - return nil -} - func (s Split) Execute(args []string) error { acct := app.SelectedAccount() if acct == nil { -- cgit