Function: tab-switcher-next-line
tab-switcher-next-line is an interactive and byte-compiled function
defined in tab-bar.el.gz.
Signature
(tab-switcher-next-line &optional ARG)
Documentation
Move to ARGth next line in the list of tabs.
Interactively, ARG is the prefix numeric argument and defaults to 1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-switcher-next-line (&optional arg)
"Move to ARGth next line in the list of tabs.
Interactively, ARG is the prefix numeric argument and defaults to 1."
(interactive "p")
(forward-line arg)
(beginning-of-line)
(move-to-column tab-switcher-column))