summaryrefslogtreecommitdiff
path: root/Magefile.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-07-02 09:38:04 +0300
committerPaul Buetow <paul@buetow.org>2026-07-02 09:38:04 +0300
commita68228bfa12f4d8a51fe53e244fcd2e66c1ef692 (patch)
tree94e257b21b93419fef655c9813f68190204c3d0d /Magefile.go
parent9f0e96ce62339ddefa8771891e0864ede9af5064 (diff)
Remove hexai-tmux-edit popup editor featurev0.42.0
The tmux popup editor and its per-agent detection (Cursor/Amp/Aider) added maintenance surface without enough use to justify it; Codex and Claude Code already support external-editor mode natively via Ctrl+G. Drops internal/tmuxedit, cmd/hexai-tmux-edit, the [tmux_edit] config schema, the Mage build target, and all related docs/README mentions. Bump version to 0.42.0. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Diffstat (limited to 'Magefile.go')
-rw-r--r--Magefile.go14
1 files changed, 2 insertions, 12 deletions
diff --git a/Magefile.go b/Magefile.go
index 9fc5be7..4c636ef 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -39,7 +39,7 @@ func Default() error {
// Build builds binaries.
func Build() error {
printCoverage()
- mg.Deps(BuildAsk, BuildHexaiLSP, BuildHexaiCLI, BuildHexaiTmuxAction, BuildHexaiTmuxEdit)
+ mg.Deps(BuildAsk, BuildHexaiLSP, BuildHexaiCLI, BuildHexaiTmuxAction)
return nil
}
@@ -67,12 +67,6 @@ func BuildHexaiTmuxAction() error {
return sh.RunV("go", "build", "-o", "hexai-tmux-action", "./cmd/hexai-tmux-action")
}
-// BuildHexaiTmuxEdit builds the hexai-tmux-edit popup editor binary.
-func BuildHexaiTmuxEdit() error {
- printCoverage()
- return sh.RunV("go", "build", "-o", "hexai-tmux-edit", "./cmd/hexai-tmux-edit")
-}
-
// BuildHexaiMCPServer builds the MCP server binary (DEPRECATED - experimental, not actively maintained).
func BuildHexaiMCPServer() error {
printCoverage()
@@ -92,10 +86,7 @@ func Dev() error {
if err := sh.RunV("go", "build", "-race", "-o", binaryName, "./cmd/hexai"); err != nil {
return err
}
- if err := sh.RunV("go", "build", "-race", "-o", "hexai-tmux-action", "./cmd/hexai-tmux-action"); err != nil {
- return err
- }
- return sh.RunV("go", "build", "-race", "-o", "hexai-tmux-edit", "./cmd/hexai-tmux-edit")
+ return sh.RunV("go", "build", "-race", "-o", "hexai-tmux-action", "./cmd/hexai-tmux-action")
}
// Run launches the LSP server via go run (useful during development).
@@ -134,7 +125,6 @@ func Install() error {
"hexai-lsp-server",
binaryName,
"hexai-tmux-action",
- "hexai-tmux-edit",
} {
if err := atomicInstallBinary(filepath.Join(".", name), bin); err != nil {
return err