Function: posframe-hide-all
posframe-hide-all is an autoloaded, interactive and byte-compiled
function defined in posframe.el.
Signature
(posframe-hide-all)
Documentation
Hide all posframe frames.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/posframe-20260415.14/posframe.el
;;;###autoload
(defun posframe-hide-all ()
"Hide all posframe frames."
(interactive)
(dolist (frame (frame-list))
(when (frame-parameter frame 'posframe-buffer)
(posframe--make-frame-invisible frame))))