commit ce517f18f32aacd5832fb65ff3da52b44b2644cb
parent af38f4dca635abe4096d3cb832ae907aaa943f13
Author: Vincent Demeester <vincent@sbr.pm>
Date: Mon, 30 Sep 2024 10:42:54 +0200
tools/emacs: rebind tab-next and tab-previous
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tools/emacs/config/config-appearance.el b/tools/emacs/config/config-appearance.el
@@ -115,7 +115,9 @@ questions. Else use completion to select the tab to switch to."
(completing-read "Select tab: " tabs nil t))))))
:bind (("C-x t t" . vde/complete-tab-bar-tab-dwim)
- ("C-x t s" . tab-switcher)))
+ ("C-x t s" . tab-switcher)
+ ("C-<next>" . tab-next)
+ ("C-<prior>" . tab-previous)))
(use-package doom-modeline
:hook (after-init . doom-modeline-mode)