Function: projectile-cleanup-known-projects
projectile-cleanup-known-projects is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-cleanup-known-projects)
Documentation
Remove known projects that don't exist anymore.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-cleanup-known-projects ()
"Remove known projects that don't exist anymore."
(interactive)
(if-let* ((projects-removed (projectile--cleanup-known-projects)))
(message "Projects removed: %s"
(mapconcat #'identity projects-removed ", "))
(message "No projects needed to be removed.")))