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
commiteb4aa232836f069ca671c6651a0e2f5dff4f7c34 (patch)
treec673e9a1ab78a6e561d6be92f92f27ebb2dea3be /modules
parent4facbbe9dec4d2a713735a80f11c412ebb53eb62 (diff)
downloaddotemacs-eb4aa232836f069ca671c6651a0e2f5dff4f7c34.tar.gz
dotemacs-eb4aa232836f069ca671c6651a0e2f5dff4f7c34.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)