From 7d0877dfb00d3a7dd22b63dcbdf12a8987b1c561 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 4c38f8a..c62e499 100644 --- a/pkg/cli/repl/suggestions.go +++ b/pkg/cli/repl/suggestions.go @@ -116,7 +116,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