Function: projectile--project-group
projectile--project-group is a byte-compiled function defined in
projectile.el.
Signature
(projectile--project-group PROJECTS WHAT)
Documentation
Return the members of PROJECTS that are still on disk.
WHAT names the kind of group in the error signalled when none are.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--project-group (projects what)
"Return the members of PROJECTS that are still on disk.
WHAT names the kind of group in the error signalled when none are."
(or (seq-filter #'projectile--directory-p projects)
(user-error "No %s to search" what)))