diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-27 12:55:58 -0400 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-27 12:55:58 -0400 |
| commit | f9d9e003a208c22cd4d390125d990b79a4c0a0e7 (patch) | |
| tree | e2b414ec00c04a5a30d0292770cefc861eace14f /modules/ai-term.el | |
| parent | fd2fb02ab77eca1b7a75fe40aac33d5fedd3dac0 (diff) | |
| download | dotemacs-f9d9e003a208c22cd4d390125d990b79a4c0a0e7.tar.gz dotemacs-f9d9e003a208c22cd4d390125d990b79a4c0a0e7.zip | |
feat(completion): tag four pickers with categories for marginalia
Add cj/completion-table (and an annotated variant) to system-lib: a wrapper that tags any collection with a completion category so marginalia, embark, consult, and sorting can recognize the candidates. None of the config's completing-reads declared a category, so the rich-candidate pickers showed bare. This applies it to the four whose candidates match a standard category and so need no custom annotator: benchmark-method (function), ERC buffer switch (buffer), ai-term close (buffer), and theme switch (theme). Each now annotates for free.
Diffstat (limited to 'modules/ai-term.el')
| -rw-r--r-- | modules/ai-term.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/ai-term.el b/modules/ai-term.el index 3beabe6b5..03c9a4046 100644 --- a/modules/ai-term.el +++ b/modules/ai-term.el @@ -959,6 +959,8 @@ when BUFFER isn't an AI-term buffer." (let ((kill-buffer-query-functions nil)) (kill-buffer buffer)))) +(require 'system-lib) + (defun cj/--ai-term-close-target () "Return the AI-term buffer `cj/ai-term-close' should act on, or nil. @@ -973,7 +975,8 @@ buffers; nil when none are alive." ((null (cdr buffers)) (car buffers)) (t (get-buffer (completing-read "Close AI terminal: " - (mapcar #'buffer-name buffers) nil t)))))))) + (cj/completion-table 'buffer (mapcar #'buffer-name buffers)) + nil t)))))))) (defun cj/ai-term-close () "Gracefully close an AI-term agent: kill its tmux session and buffer. |
