Commit ce517f18f32a

Vincent Demeester <vincent@sbr.pm>
2024-09-30 10:42:54
tools/emacs: rebind tab-next and tab-previous
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent af38f4d
Changed files (1)
tools
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)