diff options
| author | Paul Buetow <paul@buetow.org> | 2025-09-15 08:07:51 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-09-15 08:07:51 +0300 |
| commit | dac90ba0e3036a15779da70e771c5cf2818c817f (patch) | |
| tree | bd6ddb850a640b3fce79f5e65b27ce41b95e11a3 /internal/hexaiaction/tui_custom.go | |
| parent | 828d1cc59ac22d10cd1298aac0488f868e2280db (diff) | |
release: v0.10.1v0.10.1
- Fix TUI 'p' hotkey: open editor for Custom prompt
- Introduce ActionCustomPrompt to disambiguate from Custom actions submenu
- Bump version to 0.10.1
Diffstat (limited to 'internal/hexaiaction/tui_custom.go')
| -rw-r--r-- | internal/hexaiaction/tui_custom.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/hexaiaction/tui_custom.go b/internal/hexaiaction/tui_custom.go index 91d4b81..fe32588 100644 --- a/internal/hexaiaction/tui_custom.go +++ b/internal/hexaiaction/tui_custom.go @@ -34,6 +34,7 @@ func RunTUIWithCustom(customs []appconfig.CustomAction, menuHotkey string) (Acti return ActionSkip, err } if mm, ok := md.(model); ok { + // If user chose built-in items (including Custom prompt), return immediately. if mm.chosen != ActionCustom { return mm.chosen, nil } |
