Variable: tab-bar-tab-post-open-functions

tab-bar-tab-post-open-functions is a customizable variable defined in tab-bar.el.gz.

Value

nil

Documentation

List of functions to call after creating a new tab.

The current tab is supplied as an argument. Any modifications made to the tab argument will be applied after all functions are called.

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

Source Code

;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defcustom tab-bar-tab-post-open-functions nil
  "List of functions to call after creating a new tab.
The current tab is supplied as an argument.  Any modifications made
to the tab argument will be applied after all functions are called."
  :type '(repeat function)
  :group 'tab-bar
  :version "27.1")