Function: tab-bar-switch-to-prev-tab
tab-bar-switch-to-prev-tab is an interactive and byte-compiled
function defined in tab-bar.el.gz.
Signature
(tab-bar-switch-to-prev-tab &optional ARG)
Documentation
Switch to ARGth previous tab.
Interactively, ARG is the prefix numeric argument and defaults to 1.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-bar-switch-to-prev-tab (&optional arg)
"Switch to ARGth previous tab.
Interactively, ARG is the prefix numeric argument and defaults to 1."
(interactive "p")
(unless (integerp arg)
(setq arg 1))
(tab-bar-switch-to-next-tab (- arg)))