Function: projectile-expand-paths
projectile-expand-paths is a byte-compiled function defined in
projectile.el.
Signature
(projectile-expand-paths PATHS)
Documentation
Expand the elements of PATHS.
Elements containing wildcards are expanded and spliced into the resulting paths. The returned PATHS are absolute, based on the projectile project root.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-expand-paths (paths)
"Expand the elements of PATHS.
Elements containing wildcards are expanded and spliced into the
resulting paths. The returned PATHS are absolute, based on the
projectile project root."
(let ((default-directory (projectile-project-root)))
(flatten-tree (mapcar
(lambda (pattern)
(or (file-expand-wildcards pattern t)
(projectile-expand-root pattern)))
paths))))