Function: projectile-find-matching-file

projectile-find-matching-file is a byte-compiled function defined in projectile.el.

Signature

(projectile-find-matching-file TEST-FILE)

Documentation

Compute the name of a file matching TEST-FILE.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-find-matching-file (test-file)
  "Compute the name of a file matching TEST-FILE."
  (when-let* ((candidates (projectile--find-matching-file test-file)))
    (projectile--choose-from-candidates candidates :caller 'projectile-read-file)))