Function: cider-xref-fn-refs-select
cider-xref-fn-refs-select is an autoloaded, interactive and
byte-compiled function defined in cider-xref.el.
Signature
(cider-xref-fn-refs-select &optional NS SYMBOL)
Documentation
Display the references for NS and SYMBOL using completing read.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref.el
;;;###autoload
(defun cider-xref-fn-refs-select (&optional ns symbol)
"Display the references for NS and SYMBOL using completing read."
(interactive)
(cider-xref--select-fn-relation
ns symbol #'cider-sync-request:fn-refs "References for" "references"))