Variable: cider-xref-actions
cider-xref-actions is a customizable variable defined in
cider-xref.el.
Value
(("display-doc" . cider-doc-lookup)
("find-def" . cider--find-var)
("lookup-on-clojuredocs" . cider-clojuredocs-lookup))
Documentation
Controls the actions to be applied on the symbol found by an xref search.
The first action key in the list will be selected as default. If the list contains only one action key, the associated action function will be applied automatically. An action function can be any function that receives the symbol found by the xref search as argument.
This variable was added, or its default value changed, in cider version 0.22.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-xref.el
(defcustom cider-xref-actions '(("display-doc" . cider-doc-lookup)
("find-def" . cider--find-var)
("lookup-on-clojuredocs" . cider-clojuredocs-lookup))
"Controls the actions to be applied on the symbol found by an xref search.
The first action key in the list will be selected as default. If the list
contains only one action key, the associated action function will be
applied automatically. An action function can be any function that receives
the symbol found by the xref search as argument."
:type '(alist :key-type string :value-type function)
:group 'cider
:package-version '(cider . "0.22.0"))