Function: cider-repl--fetch-external-body

cider-repl--fetch-external-body is a byte-compiled function defined in cider-repl.el.

Signature

(cider-repl--fetch-external-body BUFFER URL)

Documentation

Fetch URL's content from the nREPL server and render it in BUFFER.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-repl.el
(defun cider-repl--fetch-external-body (buffer url)
  "Fetch URL's content from the nREPL server and render it in BUFFER."
  (cider-nrepl-send-request (list "op" "cider/slurp" "url" url)
                            (cider-repl-handler buffer)))