Function: projectile-process-current-project-buffers-current
projectile-process-current-project-buffers-current is a byte-compiled
function defined in projectile.el.
Signature
(projectile-process-current-project-buffers-current ACTION)
Documentation
Invoke ACTION on every project buffer with that buffer current.
ACTION is called without arguments.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-process-current-project-buffers-current (action)
"Invoke ACTION on every project buffer with that buffer current.
ACTION is called without arguments."
(let ((project-buffers (projectile-project-buffers)))
(dolist (buffer project-buffers)
(with-current-buffer buffer
(funcall action)))))