summaryrefslogtreecommitdiff
path: root/modules/eshell-vterm-config.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-04-07 13:04:48 -0500
committerCraig Jennings <c@cjennings.net>2026-04-07 13:04:48 -0500
commit3724c8da049b7ff3e925762703acc73dba2e2cd0 (patch)
treeb60e21fea87ca589fe3812a8bb38d6575da2fb17 /modules/eshell-vterm-config.el
parentc53bcaa7b6539aa1c0bd524c2a2ae32ceb2a680a (diff)
downloaddotemacs-3724c8da049b7ff3e925762703acc73dba2e2cd0.tar.gz
dotemacs-3724c8da049b7ff3e925762703acc73dba2e2cd0.zip
feat(vterm): pass F8, F9, F10 through to Emacs
Add nil bindings for F8 (agenda), F9 (gptel), and F10 (music) in vterm-mode-map so these global keybindings aren't swallowed by vterm. Also disable wttrin-debug and update abbreviations.
Diffstat (limited to 'modules/eshell-vterm-config.el')
-rw-r--r--modules/eshell-vterm-config.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/eshell-vterm-config.el b/modules/eshell-vterm-config.el
index 5799c7c3..cc382a3f 100644
--- a/modules/eshell-vterm-config.el
+++ b/modules/eshell-vterm-config.el
@@ -212,6 +212,9 @@
(vterm-mode . cj/vterm-launch-tmux))
:bind
(:map vterm-mode-map
+ ("<f8>" . nil)
+ ("<f9>" . nil)
+ ("<f10>" . nil)
("<f12>" . nil)
("C-y" . vterm-yank)
("C-p" . vtermf-copy-mode)