Function: cider--popup-fetch-external-body
cider--popup-fetch-external-body is a byte-compiled function defined
in cider-eval.el.
Signature
(cider--popup-fetch-external-body BUFFER URL)
Documentation
Fetch URL via the cider/slurp op and render it into popup BUFFER.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider--popup-fetch-external-body (buffer url)
"Fetch URL via the cider/slurp op and render it into popup BUFFER."
(cider-nrepl-send-request
(list "op" "cider/slurp" "url" url)
(cider-make-eval-handler
:buffer buffer
:on-content-type (lambda (body content-type)
(cider--popup-insert-rich-content buffer body content-type)))))