Function: projectile-project-p

projectile-project-p is a byte-compiled function defined in projectile.el.

Signature

(projectile-project-p &optional DIR)

Documentation

Check if DIR is a project.

Defaults to the current directory if not provided explicitly.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-project-p (&optional dir)
  "Check if DIR is a project.
Defaults to the current directory if not provided
explicitly."
  (projectile-project-root (or dir default-directory)))