Function: tab-switcher-delete-backwards
tab-switcher-delete-backwards is an interactive and byte-compiled
function defined in tab-bar.el.gz.
Signature
(tab-switcher-delete-backwards &optional ARG)
Documentation
Mark window configuration on this line to be deleted by x (tab-switcher-execute) command.
Then move up one line. Prefix arg means move that many lines.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-switcher-delete-backwards (&optional arg)
"Mark window configuration on this line to be deleted by \\<tab-switcher-mode-map>\\[tab-switcher-execute] command.
Then move up one line. Prefix arg means move that many lines."
(interactive "p")
(tab-switcher-delete (- (or arg 1))))