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.
Then move up one line. Prefix arg means move that many lines.
The deletion will be done by the x (tab-switcher-execute) command.
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.
Then move up one line. Prefix arg means move that many lines.
The deletion will be done by the \\<tab-switcher-mode-map>\\[tab-switcher-execute] command."
(interactive "p")
(tab-switcher-delete (- (or arg 1))))