Function: cider-popup-buffer
cider-popup-buffer is a byte-compiled function defined in
cider-popup.el.
Signature
(cider-popup-buffer NAME &optional SELECT MODE ANCILLARY)
Documentation
Create new popup buffer called NAME.
If SELECT is non-nil, select the newly created window.
If major MODE is non-nil, enable it for the popup buffer.
If ANCILLARY is non-nil, the buffer is added to cider-ancillary-buffers
and automatically removed when killed.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-popup.el
(defun cider-popup-buffer (name &optional select mode ancillary)
"Create new popup buffer called NAME.
If SELECT is non-nil, select the newly created window.
If major MODE is non-nil, enable it for the popup buffer.
If ANCILLARY is non-nil, the buffer is added to `cider-ancillary-buffers'
and automatically removed when killed."
(thread-first (cider-make-popup-buffer name mode ancillary)
(buffer-name)
(cider-popup-buffer-display select)))