Function: hycontrol-delete-other-frames
hycontrol-delete-other-frames is an interactive and byte-compiled
function defined in hycontrol.el.
Signature
(hycontrol-delete-other-frames)
Documentation
Confirm and then delete all other frames.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
;;; Frame Display Commands
(defun hycontrol-delete-other-frames ()
"Confirm and then delete all other frames."
(interactive)
(if (y-or-n-p "Delete all frames on this screen other than the selected one?")
(delete-other-frames)))