Function: tab-bar-tab-name-format-hints
tab-bar-tab-name-format-hints is a byte-compiled function defined in
tab-bar.el.gz.
Signature
(tab-bar-tab-name-format-hints NAME TAB I)
Documentation
Show absolute numbers on tabs in the tab bar before the tab name.
It has effect when tab-bar-tab-hints is non-nil.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-bar-tab-name-format-hints (name _tab i)
"Show absolute numbers on tabs in the tab bar before the tab name.
It has effect when `tab-bar-tab-hints' is non-nil."
(if tab-bar-tab-hints (concat (format "%d " i) name) name))