Function: cider-xref--show-source-references

cider-xref--show-source-references is a byte-compiled function defined in cider-xref.el.

Signature

(cider-xref--show-source-references SYMBOL)

Documentation

Show SYMBOL's project-source references via xref, or report none found.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref.el
(defun cider-xref--show-source-references (symbol)
  "Show SYMBOL's project-source references via xref, or report none found."
  (if-let* ((xrefs (cider-xref--var-source-references symbol)))
      (funcall xref-show-xrefs-function
               (lambda () xrefs)
               `((window . ,(selected-window))))
    (user-error "No source references found for %s" symbol)))