rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

commit e97bb3177bbafa98781043ad739813c99de4bf4c
parent 188500c688548fc0b3fce4ee4dcc554b95af3a94
Author: Mark Feller <mark@mfeller.io>
Date:   Mon, 15 Aug 2022 14:55:30 -0600

improve vterm keybindings for cross OS

Diffstat:
Mdots/.config/emacs/modules/module-vterm.el | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dots/.config/emacs/modules/module-vterm.el b/dots/.config/emacs/modules/module-vterm.el @@ -6,9 +6,9 @@ (use-package multi-vterm :bind (("C-x p t" . multi-vterm-project) - ("H-T" . multi-vterm-dedicated-open) - ("H-u" . multi-vterm-next) - ("H-i" . multi-vterm-prev) - ("H-y" . multi-vterm))) + ((concat window-management-prefix "-T") . multi-vterm-dedicated-open) + ((concat window-management-prefix "-u") . multi-vterm-next) + ((concat window-management-prefix "-i") . multi-vterm-prev) + ((concat window-management-prefix "-y") . multi-vterm))) (provide 'module-vterm)