Function: tab-bar-move-tab-backward
tab-bar-move-tab-backward is an interactive and byte-compiled function
defined in tab-bar.el.gz.
Signature
(tab-bar-move-tab-backward &optional ARG)
Documentation
Move the current tab ARG positions to the left.
Interactively, ARG is the prefix numeric argument and defaults to 1.
Like tab-bar-move-tab, but moves in the opposite direction.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-bar-move-tab-backward (&optional arg)
"Move the current tab ARG positions to the left.
Interactively, ARG is the prefix numeric argument and defaults to 1.
Like `tab-bar-move-tab', but moves in the opposite direction."
(interactive "p")
(tab-bar-move-tab (- (or arg 1))))