Variable: ace-window-posframe-mode-hook
ace-window-posframe-mode-hook is a customizable variable defined in
ace-window-posframe.el.
Value
nil
Documentation
Hook run after entering or leaving ace-window-posframe-mode(var)/ace-window-posframe-mode(fun).
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in ~/.emacs.d/elpa/ace-window-20220911.358/ace-window-posframe.el
;;;###autoload
(define-minor-mode ace-window-posframe-mode
"Minor mode for showing the ace window key with child frames."
:global t
:require 'ace-window
:group 'ace-window
:init-value nil
(if ace-window-posframe-mode
(ace-window-posframe-enable)
(ace-window-posframe-disable)))