Function: hycontrol-delete-other-windows

hycontrol-delete-other-windows is an interactive and byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-delete-other-windows)

Documentation

Confirm and then delete all other windows in the selected frame.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-delete-other-windows ()
  "Confirm and then delete all other windows in the selected frame."
  (interactive)
  (when (y-or-n-p "Delete all windows in this frame other than the selected one?")
    (delete-other-windows)))