Function: tab-line-hscroll-right

tab-line-hscroll-right is an interactive and byte-compiled function defined in tab-line.el.gz.

Signature

(tab-line-hscroll-right &optional ARG EVENT)

Documentation

Scroll the tab line ARG positions to the right.

Interactively, ARG is the prefix numeric argument and defaults to 1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/tab-line.el.gz
(defun tab-line-hscroll-right (&optional arg event)
  "Scroll the tab line ARG positions to the right.
Interactively, ARG is the prefix numeric argument and defaults to 1."
  (interactive (list current-prefix-arg last-nonmenu-event))
  (let ((window (and (listp event) (posn-window (event-start event)))))
    (tab-line-hscroll arg window)
    (force-mode-line-update window)))