Variable: tab-bar-show-inactive-group-tabs
tab-bar-show-inactive-group-tabs is a customizable variable defined in
tab-bar.el.gz.
Value
nil
Documentation
Show tabs even if they are in inactive groups.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defcustom tab-bar-show-inactive-group-tabs nil
"Show tabs even if they are in inactive groups."
:type 'boolean
:initialize #'custom-initialize-default
:set (lambda (sym val)
(set-default sym val)
(force-mode-line-update))
:group 'tab-bar
:version "31.1")