Function: cider-var-info
cider-var-info is a byte-compiled function defined in cider-client.el.
Signature
(cider-var-info VAR &optional ALL)
Documentation
Return info for VAR as an nREPL dict.
When multiple matching vars are returned you'll be prompted to select one, unless ALL is truthy.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defun cider-var-info (var &optional all)
"Return info for VAR as an nREPL dict.
When multiple matching vars are returned you'll be prompted to select one,
unless ALL is truthy."
(when (and var (not (string= var "")))
(let ((var-info (cond
((cider-nrepl-op-supported-p "info") (cider-sync-request:info var nil nil (cider-completion-get-context t)))
((cider-nrepl-op-supported-p "lookup") (cider-sync-request:lookup var)))))
(if all var-info (cider--var-choice var-info)))))