summaryrefslogtreecommitdiff
path: root/docs/usage.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-07 14:29:35 +0300
committerPaul Buetow <paul@buetow.org>2025-09-07 14:29:35 +0300
commit23482b5d8da5c67da1fc501ddbafdd123be3972c (patch)
tree452dc7c418055ebb79a88a303e50d2dbc1877f09 /docs/usage.md
parent76f388f9759cdc15cb1eba985cd87cde1906208b (diff)
feat: rename hexai-action -> hexai-tmux-action; remove --tmux/--no-tmux; tmux-only flow; update docs and Magefile
Diffstat (limited to 'docs/usage.md')
-rw-r--r--docs/usage.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/usage.md b/docs/usage.md
index 05d6c55..fb65596 100644
--- a/docs/usage.md
+++ b/docs/usage.md
@@ -105,7 +105,7 @@ hexai 'install ripgrep on macOS and explain'
## Hexai Action (TUI)
-`hexai-action` runs code actions over a selection or diagnostics+selection piped from stdin, or read from a file.
+`hexai-tmux-action` runs code actions over a selection or diagnostics+selection piped from stdin, or read from a file.
- Choose an action with arrow keys, `j/k`, `g/G`, Enter, or hotkeys `[s] [r] [c] [t]`.
- Output is written to stdout by default, or to a file via `--outfile`.
@@ -122,11 +122,11 @@ Examples
```sh
# From stdin
-cat input.go | hexai-action
+cat input.go | hexai-tmux-action
# From file to file
-hexai-action --infile input.go --outfile output.go
+hexai-tmux-action --infile input.go --outfile output.go
# Using shell redirection
-hexai-action < input.go > output.go
+hexai-tmux-action < input.go > output.go
```