Function: tab-switcher-prev-line

tab-switcher-prev-line is an interactive and byte-compiled function defined in tab-bar.el.gz.

Signature

(tab-switcher-prev-line &optional ARG)

Documentation

Move to ARGth previous 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-prev-line (&optional arg)
  "Move to ARGth previous 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))