Variable: tab-line-tabs-window-buffers-filter-function

tab-line-tabs-window-buffers-filter-function is a customizable variable defined in tab-line.el.gz.

Value

identity

Documentation

Filter which buffers should be displayed in the tab line.

This variable was added, or its default value changed, in Emacs 31.1.

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/tab-line.el.gz
(defcustom tab-line-tabs-window-buffers-filter-function
  #'identity
  "Filter which buffers should be displayed in the tab line."
  :type '(choice function
                 (const :tag "Show all buffers" identity)
                 (const :tag "Omit excluded buffers" tab-line-tabs-non-excluded))
  :group 'tab-line
  :version "31.1")