Function: cider-macrostep--classify
cider-macrostep--classify is a byte-compiled function defined in
cider-macrostep.el.
Signature
(cider-macrostep--classify SYMBOLS)
Documentation
Return the classification dict for SYMBOLS resolved in the current namespace.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-macrostep.el
(defun cider-macrostep--classify (symbols)
"Return the classification dict for SYMBOLS resolved in the current namespace."
(let ((result (cider-nrepl-sync-request
`("op" "cider/classify-symbols"
"symbols" ,symbols
"ns" ,(cider-current-ns)))))
(nrepl-dbind-response result (classification)
classification)))