Function: projectile-get-project-directories

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

Signature

(projectile-get-project-directories PROJECT-DIR)

Documentation

Get the list of PROJECT-DIR directories that are of interest to the user.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;; Project indexing
(defun projectile-get-project-directories (project-dir)
  "Get the list of PROJECT-DIR directories that are of interest to the user."
  (mapcar (lambda (subdir) (concat project-dir subdir))
          (or (car (projectile-parse-dirconfig-file)) '(""))))