diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-25 23:16:17 -0400 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-25 23:16:17 -0400 |
| commit | ef26a0c2e329229397b183f9ecc7df7b0e7bd028 (patch) | |
| tree | 37882a37a525a7e70b657152382f97441338989b /init.el | |
| parent | 79de32bb4b752ea55c468d4d0aab175413787cf0 (diff) | |
| download | dotemacs-ef26a0c2e329229397b183f9ecc7df7b0e7bd028.tar.gz dotemacs-ef26a0c2e329229397b183f9ecc7df7b0e7bd028.zip | |
feat(ai-term): run agents through EAT instead of ghostel
Port ai-term from ghostel to EAT. Agents spawn in an EAT terminal running the same tmux session (tmux new-session -A -s aiv-<project>), so the persistence and detach/reattach model is unchanged. A spike confirmed EAT + tmux detach and reattach exactly like ghostel + tmux. The swaps: (ghostel) becomes (eat) with eat-buffer-name carrying the agent name, ghostel-send-string becomes a process-send-string helper, and the M-SPC swap chord is bound directly in eat-semi-char-mode-map (no exception-list plus rebuild dance). Buffer detection was already name-based, so the dispatch, next, and cycle logic is unchanged. Dropped the now-unused suppress-tmux variable. Tests updated to mock eat.
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ (require 'eshell-config) ;; emacs shell configuration (require 'eat-config) ;; EAT terminal + the F12 dock-and-remember toggle (require 'term-config) ;; ghostel (ai-term backend) + tmux history copy -(require 'ai-term) ;; in-Emacs Claude launcher (vertical-split ghostel) +(require 'ai-term) ;; in-Emacs Claude launcher (vertical-split EAT terminal) (require 'help-utils) ;; search: arch-wiki, devdoc, tldr, wikipedia (require 'help-config) ;; info, man, help config (require 'face-diagnostic) ;; describe face/font at point (cj/describe-face-at-point) |
