aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-26 05:10:29 -0400
committerCraig Jennings <c@cjennings.net>2026-06-26 05:10:29 -0400
commit1924d87f4b92526d9180b52c4fbd9e66ae25acdc (patch)
tree3e2e186420e9ed9a29d0409039c74d663c566b68 /modules
parente4b8dc639ba18e12526255799d8c4735ed348f9d (diff)
downloaddotemacs-1924d87f4b92526d9180b52c4fbd9e66ae25acdc.tar.gz
dotemacs-1924d87f4b92526d9180b52c4fbd9e66ae25acdc.zip
refactor(term): finish ghostel retirement (phase 5)
Remove the dead ghostel app from theme-studio: the GHOSTEL_FACES/SEED data, the registry row, the renderGhostelPreview previewer, and the package_seed test, then regenerate the tool. ansi-color stays since eat inherits it. Rename testutil-ghostel-buffers to testutil-terminal-buffers and drop make-fake-ghostel-buffer; the toggle-filter test now uses the eat fixture, since agents are eat. Fix the comments that still called the agent buffers ghostel (they're eat now) in eat-config and the ai-term and auto-dim test docstrings. I also package-deleted the unused ghostel ELPA package. Full suite green; the remaining ghostel mentions are accurate migration history.
Diffstat (limited to 'modules')
-rw-r--r--modules/eat-config.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/eat-config.el b/modules/eat-config.el
index d08fb91e6..d8319e649 100644
--- a/modules/eat-config.el
+++ b/modules/eat-config.el
@@ -78,7 +78,7 @@
;; direction + body size at toggle-off, replay them via a custom display action
;; using frame-edge directions and body-relative sizes so the result is
;; divider-independent and layout-stable. Manages the EAT terminal only;
-;; ai-term.el's ghostel agent buffers are separate (M-SPC).
+;; ai-term.el's agent buffers are separate (M-SPC).
(defcustom cj/term-toggle-window-height 0.7
"Default fraction of frame height for the F12 terminal window.
@@ -123,7 +123,7 @@ nil means fall back to `cj/term-toggle-window-height' as a fraction.")
(defun cj/--term-toggle-buffer-p (buffer)
"Return non-nil when BUFFER is an eshell terminal F12 should manage.
-F12 opens eshell, which runs through EAT via eat-eshell-mode. ai-term's ghostel
+F12 opens eshell, which runs through EAT via eat-eshell-mode. ai-term's
agent buffers are managed separately via M-SPC, not F12."
(and (bufferp buffer)
(buffer-live-p buffer)
@@ -200,7 +200,7 @@ Returns one of:
- Otherwise, open eshell, displaying it through the same saved-geometry action.
eshell runs through EAT via eat-eshell-mode, so visual commands render in a real
-terminal. ai-term's ghostel agent buffers are managed separately via M-SPC."
+terminal. ai-term's agent buffers are managed separately via M-SPC."
(interactive)
(pcase (cj/--term-toggle-dispatch)
(`(toggle-off . ,win)