Function: cider-xref--project-source-files
cider-xref--project-source-files is a byte-compiled function defined
in cider-xref-source.el.
Signature
(cider-xref--project-source-files)
Documentation
Return the Clojure source files of the current project, or nil when not in one.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref-source.el
(defun cider-xref--project-source-files ()
"Return the Clojure source files of the current project, or nil when not in one."
(when-let* ((project (project-current)))
(seq-filter #'cider-xref--source-file-p (project-files project))))