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/types.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/types.go')
| -rw-r--r-- | internal/hexaiaction/types.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/hexaiaction/types.go b/internal/hexaiaction/types.go index d3cda4e..8c5652b 100644 --- a/internal/hexaiaction/types.go +++ b/internal/hexaiaction/types.go @@ -11,7 +11,10 @@ const ( ActionDocument ActionKind = "document" ActionGoTest ActionKind = "gotest" ActionSimplify ActionKind = "simplify" - ActionCustom ActionKind = "custom" + // ActionCustom represents a configured custom action from the submenu. + ActionCustom ActionKind = "custom" + // ActionCustomPrompt is the free-form prompt opened in the editor (hotkey 'p'). + ActionCustomPrompt ActionKind = "custom_prompt" ) // InputParts represents parsed stdin input for actions. |
