Function: cider-xref--report-no-results

cider-xref--report-no-results is a byte-compiled function defined in cider-xref.el.

Signature

(cider-xref--report-no-results SYMBOL NOUN)

Documentation

Report that no NOUN (e.g. "references") were found for SYMBOL.

When SYMBOL doesn't resolve, hint at why instead - a typo or an unloaded namespace is a likelier cause than a var that genuinely has none.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref.el
(defun cider-xref--report-no-results (symbol noun)
  "Report that no NOUN (e.g. \"references\") were found for SYMBOL.
When SYMBOL doesn't resolve, hint at why instead - a typo or an unloaded
namespace is a likelier cause than a var that genuinely has none."
  (if (cider-var-info symbol)
      (message "No %s found for %S in currently loaded namespaces" noun symbol)
    (user-error "%s" (cider-resolution-failure-message symbol))))