diff options
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. |
