Variable: tab-line-new-tab-choice

tab-line-new-tab-choice is a customizable variable defined in tab-line.el.gz.

Value

t

Documentation

Defines what to show in a new tab.

If t, display a selection menu with all available buffers. If the value is a function, call it with no arguments.

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

Source Code

;; Defined in /usr/src/emacs/lisp/tab-line.el.gz
(defcustom tab-line-new-tab-choice t
  "Defines what to show in a new tab.
If t, display a selection menu with all available buffers.
If the value is a function, call it with no arguments."
  :type '(choice (const     :tag "Buffer menu" t)
                 (function  :tag "Function"))
  :group 'tab-line
  :version "27.1")