Function: tab-bar-tab-group-format-default

tab-bar-tab-group-format-default is a byte-compiled function defined in tab-bar.el.gz.

Signature

(tab-bar-tab-group-format-default TAB I &optional CURRENT-P)

Source Code

;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-bar-tab-group-format-default (tab i &optional current-p)
  (propertize
   (concat (if (and tab-bar-tab-hints
                    (not current-p)
                    (not tab-bar-show-inactive-group-tabs))
               (format "%d " i) "")
           (funcall tab-bar-tab-group-function tab))
   'face (if current-p 'tab-bar-tab-group-current 'tab-bar-tab-group-inactive)))