Variable: cider-doctor-mode-hook
cider-doctor-mode-hook is a variable defined in cider-doctor.el.
Value
nil
Documentation
Hook run after entering CIDER Doctor mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-doctor.el
(define-derived-mode cider-doctor-mode special-mode "CIDER Doctor"
"Major mode for the CIDER Doctor report.
Press \\[revert-buffer] to re-run the checks and refresh the report.
\\{cider-doctor-mode-map}"
(setq-local revert-buffer-function #'cider-doctor--revert))