Function: cider-popup-buffer-quit

cider-popup-buffer-quit is an interactive and byte-compiled function defined in cider-popup.el.

Signature

(cider-popup-buffer-quit &optional KILL)

Documentation

Quit the current (temp) window.

Bury its buffer using quit-restore-window. If prefix argument KILL is non-nil, kill the buffer instead of burying it.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-popup.el
(defun cider-popup-buffer-quit (&optional kill)
  "Quit the current (temp) window.
Bury its buffer using `quit-restore-window'.
If prefix argument KILL is non-nil, kill the buffer instead of burying it."
  (interactive)
  (quit-restore-window (selected-window) (if kill 'kill 'append)))