summaryrefslogtreecommitdiff
path: root/docs/buildandinstall.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-12 09:33:49 +0200
committerPaul Buetow <paul@buetow.org>2026-02-12 09:33:49 +0200
commitda160fbdfb30a55a4d617553baeb5b0a5a9d5fb8 (patch)
tree8c8c184d3947211c82f10b198c7b366a01cd4780 /docs/buildandinstall.md
parentcfd02d2874992f7e293d5098bd328a495825a8d4 (diff)
Rename hexai-lsp command to hexai-lsp-server
Amp-Thread-ID: https://ampcode.com/threads/T-019c50bc-2906-77db-a31e-0d553338d99b Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'docs/buildandinstall.md')
-rw-r--r--docs/buildandinstall.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/buildandinstall.md b/docs/buildandinstall.md
index 89a7c57..2240be0 100644
--- a/docs/buildandinstall.md
+++ b/docs/buildandinstall.md
@@ -3,7 +3,7 @@
Hexai uses Mage for developer tasks. Install Mage, then run targets like build, dev, test, and install.
- Install Mage: `go install github.com/magefile/mage@latest`
-- Build binaries: `mage build` (produces `hexai`, `hexai-lsp`, `hexai-tmux-action`, and `hexai-tmux-edit`)
+- Build binaries: `mage build` (produces `hexai`, `hexai-lsp-server`, `hexai-tmux-action`, and `hexai-tmux-edit`)
- Dev build (+ tests, vet, lint): `mage dev`
- Run tests: `mage test`
- Run tests with coverage: `go test ./... -cover`
@@ -19,6 +19,6 @@ Note: `mage lint` uses `golangci-lint`. Install via `mage devinstall` if needed.
Either use the Mage method as mentioned above, or install directly with:
- CLI: `go install codeberg.org/snonux/hexai/cmd/hexai@latest`
-- LSP: `go install codeberg.org/snonux/hexai/cmd/hexai-lsp@latest`
+- LSP: `go install codeberg.org/snonux/hexai/cmd/hexai-lsp-server@latest`
- Action runner: `go install codeberg.org/snonux/hexai/cmd/hexai-tmux-action@latest`
- Tmux popup editor: `go install codeberg.org/snonux/hexai/cmd/hexai-tmux-edit@latest`