From d235c1fc4017e364d897f4c7f1112f529ab2f65f Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 4 Jul 2026 10:41:20 -0500 Subject: feat(ai-term): add ~/.dotfiles to the project picker The picker collected projects from ~/.emacs.d and the children of ~/code and ~/projects, so ~/.dotfiles (a single-project root in $HOME) matched neither and never appeared. I added it to cj/ai-term-project-roots alongside ~/.emacs.d. --- modules/ai-term.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/ai-term.el') diff --git a/modules/ai-term.el b/modules/ai-term.el index b67245fd..e0706abb 100644 --- a/modules/ai-term.el +++ b/modules/ai-term.el @@ -54,7 +54,8 @@ agent you run (aider, an open-source LLM TUI, etc.)." :group 'ai-term) (defcustom cj/ai-term-project-roots - (list (expand-file-name "~/.emacs.d")) + (list (expand-file-name "~/.emacs.d") + (expand-file-name "~/.dotfiles")) "Directories that are themselves AI-agent projects. Each entry is included as a candidate when it exists and contains .ai/protocols.org. Use this for single-project roots like ~/.emacs.d." -- cgit v1.2.3