Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,7 @@ always go to Evil modes if you need to with ~C-z~).
| agent-shell-qwen-command | Command and parameters for the Qwen Code client. |
| agent-shell-qwen-environment | Environment variables for the Qwen Code client. |
| agent-shell-screenshot-command | The program to use for capturing screenshots. |
| agent-shell-session-load-strategy | How to choose existing sessions when session/list and session/load are available. |
| agent-shell-section-functions | Abnormal hook run after overlays are applied (experimental). |
| agent-shell-show-busy-indicator | Non-nil to show the busy indicator animation in the header and mode line. |
| agent-shell-show-config-icons | Whether to show icons in agent config selection. |
Expand Down
2 changes: 2 additions & 0 deletions agent-shell-viewport.el
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,7 @@ For example, offer to kill associated shell session."
(define-key map (kbd "C-c C-p") #'agent-shell-viewport-compose-peek-last)
(define-key map (kbd "C-c C-k") #'agent-shell-viewport-compose-cancel)
(define-key map (kbd "C-<tab>") #'agent-shell-viewport-cycle-session-mode)
(define-key map (kbd "C-c C-d") #'agent-shell-delete-session)
(define-key map (kbd "C-c C-m") #'agent-shell-viewport-set-session-mode)
(define-key map (kbd "C-c C-v") #'agent-shell-viewport-set-session-model)
(define-key map (kbd "C-c C-o") #'agent-shell-other-buffer)
Expand Down Expand Up @@ -775,6 +776,7 @@ For example, offer to kill associated shell session."
(define-key map (kbd "r") #'agent-shell-viewport-reply)
(define-key map (kbd "q") #'bury-buffer)
(define-key map (kbd "C-<tab>") #'agent-shell-viewport-cycle-session-mode)
(define-key map (kbd "C-c C-d") #'agent-shell-delete-session)
(define-key map (kbd "v") #'agent-shell-viewport-set-session-model)
(define-key map (kbd "m") #'agent-shell-viewport-set-session-mode)
(define-key map (kbd "o") #'agent-shell-other-buffer)
Expand Down
Loading