Function: cider-xref-fn-deps
cider-xref-fn-deps is an autoloaded, interactive and byte-compiled
function defined in cider-xref.el.
Signature
(cider-xref-fn-deps &optional NS SYMBOL)
Documentation
Show all functions referenced by the var matching NS and SYMBOL.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-xref.el
;;;###autoload
(defun cider-xref-fn-deps (&optional ns symbol)
"Show all functions referenced by the var matching NS and SYMBOL."
(interactive)
(cider-ensure-connected)
(cider-ensure-op-supported "fn-deps")
(if-let* ((ns (or ns (cider-current-ns)))
(symbol (or symbol (cider-symbol-at-point)))
(results (cider-sync-request:fn-deps ns symbol)))
(cider-show-xref (format "Showing %d function dependencies for %s" (length results) symbol) results)
(message "No dependencies found for %S" symbol)))