Function: cider-references-menu
cider-references-menu is an autoloaded, interactive and byte-compiled
function defined in cider-xref-tree.el.
Signature
(cider-references-menu)
Documentation
Transient menu for CIDER's reference and call-graph queries.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref-tree.el
;;;###autoload (autoload 'cider-references-menu "cider-xref-tree" "Menu for CIDER's reference and call-graph queries." t)
(transient-define-prefix cider-references-menu ()
"Transient menu for CIDER's reference and call-graph queries."
[["Callers & callees"
("c" "Callers (tree)" cider-who-calls)
("d" "Callees (tree)" cider-who-is-called)
("r" "Callers (flat list)" cider-xref-fn-refs)
("R" "Callees (flat list)" cider-xref-fn-deps)
("s" "Callers in source (text scan)" cider-xref-fn-refs-in-source)]
["Macros & protocols"
("m" "Macro use sites" cider-who-macroexpands)
("i" "Protocol/multimethod implementations" cider-who-implements)
("t" "Protocols a type implements" cider-type-protocols)
("p" "Protocols declaring a method" cider-protocols-with-method)]]
;; Control-variant duplicates of the who-map letters, hidden from the menu.
[:hide (lambda () t)
("C-c" "Callers (tree)" cider-who-calls)
("C-d" "Callees (tree)" cider-who-is-called)
("C-m" "Macro use sites" cider-who-macroexpands)
("C-i" "Protocol/multimethod implementations" cider-who-implements)
("C-t" "Protocols a type implements" cider-type-protocols)
("C-p" "Protocols declaring a method" cider-protocols-with-method)])