Variable: ace-window-posframe-mode
ace-window-posframe-mode is a customizable variable defined in
ace-window-posframe.el.
Value
nil
Documentation
Non-nil if Ace-Window-Posframe mode is enabled.
See the ace-window-posframe-mode(var)/ace-window-posframe-mode(fun) command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node (emacs)Easy Customization)
or call the function ace-window-posframe-mode(var)/ace-window-posframe-mode(fun).
Key Bindings
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)))