diff options
author | Vincent Ambo <tazjin@tvl.su> | 2024-10-04T07·36+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-10-04T07·44+0000 |
commit | e988c804fc14b9a4d88cc50772f492e28d3cf381 (patch) | |
tree | 771b6a306b1911b5d781bdf454d656f996925bb6 | |
parent | ab6e8d28aac851d93dd04e180fe65f1c56f69037 (diff) |
fix(tazjin/emacs): fix term-switcher hotkey r/8753
Change-Id: I052d4328320699c00e0192405b7392aa660d67ec Reviewed-on: https://cl.tvl.fyi/c/depot/+/12570 Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
-rw-r--r-- | users/tazjin/emacs/config/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/tazjin/emacs/config/init.el b/users/tazjin/emacs/config/init.el index 8cf1979bd64f..a5b0e933d56f 100644 --- a/users/tazjin/emacs/config/init.el +++ b/users/tazjin/emacs/config/init.el @@ -73,7 +73,7 @@ (use-package s) (use-package string-edit-at-point) (use-package term-switcher - :bind (:map global-map ("<f5>" . #'ts/switch-to-terminal))) + :bind (:map global-map ("C-c v" . #'ts/switch-to-terminal))) (use-package undo-tree :config (global-undo-tree-mode) |