Commit 3b385f7debc8

Vincent Demeester <vincent@sbr.pm>
2026-03-10 14:32:48
feat: add agent-shell keybindings
Added C-c a a for agent-shell, C-c a A for toggle, and C-c a ? for the transient help menu.
1 parent c18a67d
Changed files (1)
dots
config
emacs
dots/config/emacs/init.el
@@ -2931,6 +2931,9 @@ the appropriate file in ~/.local/share/imapfilter-rules/"
 
 (use-package agent-shell
   :commands (agent-shell agent-shell-toggle)
+  :bind (("C-c a a" . agent-shell)
+	 ("C-c a A" . agent-shell-toggle)
+	 ("C-c a ?" . agent-shell-help-menu))
   :init
   (declare-function agent-shell-google-make-authentication "agent-shell")
   (declare-function agent-shell-make-environment-variables "agent-shell")