Variable: cider-doctor--status-glyphs
cider-doctor--status-glyphs is a variable defined in cider-doctor.el.
Value
((ok . "✓")
(warn . "⚠")
(error . "✗")
(info . "•"))
Documentation
Mapping of check status to the glyph shown in the report.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-doctor.el
;;; Check results
;;
;; A check returns a plist with these keys:
;; :status - one of `ok', `warn', `error', `info'
;; :label - short headline string
;; :detail - optional longer explanation (string or nil)
;; :section - optional manual anchor (see `cider--manual-button')
;; :hint - optional one-line remediation string
;;
;; A check function returns either a single plist or a list of them.
(defconst cider-doctor--status-glyphs
'((ok . "✓")
(warn . "⚠")
(error . "✗")
(info . "•"))
"Mapping of check status to the glyph shown in the report.")