From e920987860dd9392fefc4b222aa4d2446b74f3d8 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 27 Dec 2022 19:40:40 +0100 Subject: commands: generic "select" code, move bug completion in bugcmd --- commands/bug/bug_status_open.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'commands/bug/bug_status_open.go') diff --git a/commands/bug/bug_status_open.go b/commands/bug/bug_status_open.go index e686add1a..74177974a 100644 --- a/commands/bug/bug_status_open.go +++ b/commands/bug/bug_status_open.go @@ -3,8 +3,6 @@ package bugcmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" ) @@ -18,14 +16,14 @@ func newBugStatusOpenCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugStatusOpen(env, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } return cmd } func runBugStatusOpen(env *execenv.Env, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } -- cgit v1.2.3