Function: projectile--watch-skipped-once
projectile--watch-skipped-once is a byte-compiled function defined in
projectile.el.
Signature
(projectile--watch-skipped-once PROJECT FORMAT-STRING &rest ARGS)
Documentation
Report (via FORMAT-STRING and ARGS) that PROJECT won't be watched.
The message is only emitted when projectile-verbose is non-nil, and
only once per project and session.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--watch-skipped-once (project format-string &rest args)
"Report (via FORMAT-STRING and ARGS) that PROJECT won't be watched.
The message is only emitted when `projectile-verbose' is non-nil, and
only once per project and session."
(unless (gethash project projectile--watch-skipped-projects)
(puthash project t projectile--watch-skipped-projects)
(apply #'projectile--message format-string args)))