Function: projectile-process-current-project-files
projectile-process-current-project-files is a byte-compiled function
defined in projectile.el.
Signature
(projectile-process-current-project-files ACTION)
Documentation
Process the current project's files using ACTION.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-process-current-project-files (action)
"Process the current project's files using ACTION."
(let ((project-files (projectile-current-project-files))
(default-directory (projectile-project-root)))
(dolist (filename project-files)
(funcall action filename))))