Function: cider-doctor--render

cider-doctor--render is a byte-compiled function defined in cider-doctor.el.

Signature

(cider-doctor--render)

Documentation

Render the diagnostics report into the current buffer.

Runs the offline environment checks and, when a REPL is connected, the connection-health checks.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-doctor.el
(defun cider-doctor--render ()
  "Render the diagnostics report into the current buffer.
Runs the offline environment checks and, when a REPL is connected, the
connection-health checks."
  (let ((inhibit-read-only t))
    (erase-buffer)
    (insert "CIDER Doctor\n")
    (insert "============\n\n")
    (cider-doctor--insert-section "Environment" (cider-doctor--offline-checks))
    (if (cider-doctor--online-p)
        (cider-doctor--insert-section "Connection" (cider-doctor--online-checks))
      (insert "Connection\n\nNo active REPL; connection checks skipped.\n\n"))
    (goto-char (point-min))))