Function: tab-bar-format-tabs
tab-bar-format-tabs is a byte-compiled function defined in
tab-bar.el.gz.
Signature
(tab-bar-format-tabs)
Documentation
Produce all the tabs for the tab bar.
Probably introduced at or before Emacs version 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-bar-format-tabs ()
"Produce all the tabs for the tab bar."
(let ((i 0))
(mapcan
(lambda (tab)
(setq i (1+ i))
(tab-bar--format-tab tab i))
(funcall tab-bar-tabs-function))))