Function: tab-line-hscroll-left

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

Signature

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

Documentation

Scroll the tab line ARG positions to the left.

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-left (&optional arg event)
  "Scroll the tab line ARG positions to the left.
Interactively, ARG is the prefix numeric argument and defaults to 1."
  (interactive (list current-prefix-arg last-nonmenu-event))
  (when (tab-line-track-tap event)
    (let ((window (posn-window (tab-line-event-start event))))
      (tab-line-hscroll (- (or arg 1)) window)
      (force-mode-line-update window))))