Variable: tab-bar-tab-post-change-group-functions
tab-bar-tab-post-change-group-functions is a customizable variable
defined in tab-bar.el.gz.
Value
(tab-bar-move-tab-to-group)
Documentation
List of functions to call after changing a tab group.
This hook is run at the end of the function tab-bar-change-tab-group.
The current tab is supplied as an argument. You can use any function,
but by default it enables the function tab-bar-move-tab-to-group
that moves the tab closer to its group.
This variable was added, or its default value changed, in Emacs 29.1.
Probably introduced at or before Emacs version 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defcustom tab-bar-tab-post-change-group-functions '(tab-bar-move-tab-to-group)
"List of functions to call after changing a tab group.
This hook is run at the end of the function `tab-bar-change-tab-group'.
The current tab is supplied as an argument. You can use any function,
but by default it enables the function `tab-bar-move-tab-to-group'
that moves the tab closer to its group."
:type 'hook
:options '(tab-bar-move-tab-to-group)
:group 'tab-bar
:version "29.1")