Function: cider-doctor

cider-doctor is an autoloaded, interactive and byte-compiled function defined in cider-doctor.el.

Signature

(cider-doctor)

Documentation

Diagnose the current CIDER setup and show a report.

Runs offline environment checks and, when a REPL is connected, a set of connection-health checks. The resulting buffer is meant to be pasted into bug reports. Press M-x revert-buffer (revert-buffer) to refresh it.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-doctor.el
;;;###autoload
(defun cider-doctor ()
  "Diagnose the current CIDER setup and show a report.
Runs offline environment checks and, when a REPL is connected, a set of
connection-health checks.  The resulting buffer is meant to be pasted
into bug reports.  Press \\<cider-doctor-mode-map>\\[revert-buffer] to
refresh it."
  (interactive)
  (let ((buffer (cider-popup-buffer "*cider-doctor*" 'select #'cider-doctor-mode)))
    (with-current-buffer buffer
      (cider-doctor--render))
    buffer))