Variable: cider-doctor--expected-ops

cider-doctor--expected-ops is a variable defined in cider-doctor.el.

Value

(("cider/info" . "symbol info, docs, source")
 ("cider/complete" . "code completion") ("cider/eldoc" . "eldoc")
 ("cider/classpath" . "classpath and navigation")
 ("cider/macroexpand" . "macroexpansion")
 ("cider/ns-path" . "namespace navigation")
 ("cider/analyze-last-stacktrace" . "error rendering")
 ("cider/test-all" . "test runner")
 ("cider/fn-refs" . "xref / find references")
 ("cider/out-subscribe" . "server output streaming"))

Documentation

Representative cider-nrepl ops mapped to the feature they enable.

Probed by cider-doctor--check-ops to explain why a feature might be dead.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260821.817/cider-doctor.el
(defconst cider-doctor--expected-ops
  '(("cider/info"                   . "symbol info, docs, source")
    ("cider/complete"               . "code completion")
    ("cider/eldoc"                  . "eldoc")
    ("cider/classpath"              . "classpath and navigation")
    ("cider/macroexpand"            . "macroexpansion")
    ("cider/ns-path"                . "namespace navigation")
    ("cider/analyze-last-stacktrace" . "error rendering")
    ("cider/test-all"              . "test runner")
    ("cider/fn-refs"               . "xref / find references")
    ("cider/out-subscribe"         . "server output streaming"))
  "Representative cider-nrepl ops mapped to the feature they enable.
Probed by `cider-doctor--check-ops' to explain why a feature might be dead.")