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/msg/invite.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'commands/msg/invite.go') diff --git a/commands/msg/invite.go b/commands/msg/invite.go index 5b8558b0..12bea93e 100644 --- a/commands/msg/invite.go +++ b/commands/msg/invite.go @@ -28,10 +28,6 @@ func (invite) Aliases() []string { return []string{"accept", "accept-tentative", "decline"} } -func (invite) Complete(args []string) []string { - return nil -} - func (i invite) Execute(args []string) error { acct := app.SelectedAccount() if acct == nil { -- cgit