Function: cider-xref-fn-refs
cider-xref-fn-refs is an autoloaded, interactive and byte-compiled
function defined in cider-xref.el.
Signature
(cider-xref-fn-refs &optional NS SYMBOL)
Documentation
Show all functions that reference the var matching NS and SYMBOL.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref.el
;;;###autoload
(defun cider-xref-fn-refs (&optional ns symbol)
"Show all functions that reference the var matching NS and SYMBOL."
(interactive)
(cider-xref--show-fn-relation
ns symbol #'cider-sync-request:fn-refs
"Showing %d functions that reference %s in currently loaded namespaces"
"references"))