summaryrefslogtreecommitdiff
path: root/internal/hexaiaction/run.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/hexaiaction/run.go')
-rw-r--r--internal/hexaiaction/run.go9
1 files changed, 4 insertions, 5 deletions
diff --git a/internal/hexaiaction/run.go b/internal/hexaiaction/run.go
index f34a4cd..2a3ade1 100644
--- a/internal/hexaiaction/run.go
+++ b/internal/hexaiaction/run.go
@@ -38,7 +38,7 @@ func logTmuxActionError(stderr io.Writer, err error) error {
// requireInput validates that input selection is not empty.
func requireInput(sel string) error {
if strings.TrimSpace(sel) == "" {
- return fmt.Errorf("no input provided on stdin")
+ return fmt.Errorf("no input provided on stdin; pipe the selected text or pane contents into hexai-tmux-action")
}
return nil
}
@@ -193,11 +193,10 @@ func (r *Runner) Run(ctx context.Context, stdin io.Reader, stdout, stderr io.Wri
var client chatDoer = cli
parts, err := ParseInput(stdin)
if err != nil {
- _, _ = fmt.Fprintln(stderr, logging.AnsiBase+"hexai-tmux-action: failed to read input"+logging.AnsiReset)
- return err
+ return fmt.Errorf("hexai-tmux-action: failed to read action input from stdin (pipe the selected text or pane contents into hexai-tmux-action): %w", err)
}
- if strings.TrimSpace(parts.Selection) == "" {
- return fmt.Errorf("hexai-tmux-action: no input provided on stdin")
+ if err := requireInput(parts.Selection); err != nil {
+ return fmt.Errorf("hexai-tmux-action: %w", err)
}
choice, err := chooser(cfg)
if err != nil {