Function: cider-xref-fn-deps-select
cider-xref-fn-deps-select is an autoloaded, interactive and
byte-compiled function defined in cider-xref.el.
Signature
(cider-xref-fn-deps-select &optional NS SYMBOL)
Documentation
Display the function dependencies 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-deps-select (&optional ns symbol)
"Display the function dependencies for NS and SYMBOL using completing read."
(interactive)
(cider-xref--select-fn-relation
ns symbol #'cider-sync-request:fn-deps "Dependencies for" "dependencies"))