Function: projectile-replace--skip
projectile-replace--skip is a byte-compiled function defined in
projectile.el.
Signature
(projectile-replace--skip NAME REASON)
Documentation
Warn that NAME is skipped for REASON and return the symbol skipped.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--skip (name reason)
"Warn that NAME is skipped for REASON and return the symbol `skipped'."
(message "%s"
(projectile-prepend-project-name
(format "skipping %s (%s)" name reason)))
'skipped)