Variable: tab-bar-tabs-function
tab-bar-tabs-function is a variable defined in tab-bar.el.gz.
Value
tab-bar-tabs
Documentation
Function to get a list of tabs to display in the tab bar.
This function should have one optional argument FRAME,
defaulting to the selected frame when nil.
It should return a list of alists with parameters
that include at least the element (name . TAB-NAME).
For example, '((tab (name . "Tab 1")) (current-tab (name . "Tab 2")))
By default, use function tab-bar-tabs.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defvar tab-bar-tabs-function #'tab-bar-tabs
"Function to get a list of tabs to display in the tab bar.
This function should have one optional argument FRAME,
defaulting to the selected frame when nil.
It should return a list of alists with parameters
that include at least the element (name . TAB-NAME).
For example, \\='((tab (name . \"Tab 1\")) (current-tab (name . \"Tab 2\")))
By default, use function `tab-bar-tabs'.")