From 6bcff202b44ffa9eea3a3b25a391a59e72fd86c3 Mon Sep 17 00:00:00 2001 From: vb Date: Sat, 7 Feb 2026 15:39:05 +0100 Subject: [PATCH] fix --- pkg/cli/repl/suggestions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/repl/suggestions.go b/pkg/cli/repl/suggestions.go index 0d081cc..cc8b5d6 100644 --- a/pkg/cli/repl/suggestions.go +++ b/pkg/cli/repl/suggestions.go @@ -95,7 +95,7 @@ func flagSuggestions(cmd string, words []string, text string) []prompt.Suggest { // Update/edit: suggest issue IDs when typing the ID, flags after ID is provided if cmd == "update" || cmd == "edit" { if len(words) >= 2 && (lastWord == "" || strings.HasPrefix(lastWord, "-")) { - // ID already provided (trailing space) or typing a flag - suggest flags + // ID already provided (trailing space) or typing a flag -> suggest update flags flags := updateFlags if lastWord == "" { return flags