Function: tab-switcher-unmark
tab-switcher-unmark is an interactive and byte-compiled function
defined in tab-bar.el.gz.
Signature
(tab-switcher-unmark &optional BACKUP)
Documentation
Cancel operations on window configuration on this line and move down.
With prefix arg BACKUP, move up instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-switcher-unmark (&optional backup)
"Cancel operations on window configuration on this line and move down.
With prefix arg BACKUP, move up instead."
(interactive "P")
(beginning-of-line)
(move-to-column tab-switcher-column)
(let* ((buffer-read-only nil))
(delete-char 1)
(insert " "))
(forward-line (if backup -1 1))
(move-to-column tab-switcher-column))