Function: cider-find-var-file
cider-find-var-file is a byte-compiled function defined in
cider-test.el.
Signature
(cider-find-var-file NS VAR)
Documentation
Return the buffer visiting the file in which the NS VAR is defined.
Or nil if not found.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
(defun cider-find-var-file (ns var)
"Return the buffer visiting the file in which the NS VAR is defined.
Or nil if not found."
(when-let* ((info (cider-var-info (concat ns "/" var)))
(file (nrepl-dict-get info "file")))
(cider-find-file file)))