Variable: window-configuration-change-hook
window-configuration-change-hook is a variable defined in window.c.
Value
(evil-refresh-cursor
window--adjust-process-windows)
Documentation
Functions called during redisplay when window configuration has changed.
The value should be a list of functions that take no argument.
Functions specified buffer-locally are called for each window showing the corresponding buffer if at least one window on that frame has been added, deleted or changed its buffer or its total or body size since the last redisplay. Each call is performed with the window showing the buffer temporarily selected.
Functions specified by the default value are called for each frame if at least one window on that frame has been added, deleted or changed its buffer or its total or body size since the last redisplay. Each call is performed with the frame temporarily selected.
Probably introduced at or before Emacs version 20.1.
Source Code
// Defined in /usr/src/emacs/src/window.c
DEFVAR_LISP ("window-configuration-change-hook", Vwindow_configuration_change_hook,
doc: /* Functions called during redisplay when window configuration has changed.
The value should be a list of functions that take no argument.
Functions specified buffer-locally are called for each window showing
the corresponding buffer if at least one window on that frame has been
added, deleted or changed its buffer or its total or body size since
the last redisplay. Each call is performed with the window showing
the buffer temporarily selected.
Functions specified by the default value are called for each frame if
at least one window on that frame has been added, deleted or changed
its buffer or its total or body size since the last redisplay. Each
call is performed with the frame temporarily selected. */);