I have several projects defined, and when I run C-c p p
, it will list all of the projects. Now I don't want a project and I have deleted the .projectile file under that project, but it still shows up. How do I delete it?
helm & projectile: how to remove a project from projectile
Asked Answered
The function projectile-remove-known-project
prompts for a project to forget about. projectile-remove-current-project-from-known-projects
removes the active project.
Known projects are stored in the file ~/.emacs.d/projectile-bookmarks.eld
.
The order of the entries of the list in this file changes all the time and really clutters up your git working tree, so I would not recommend this as a persistent mechanism for storing known projects as configuration! –
Twenty
On Doom Emacs, I found ~/.emacs.d/.local/cache/projectile.projects –
Anthemion
Is it possible to change path for the ``projectile-bookmarks.eld` ? –
Array
@alper, that should probably be a separate question but it looks like you can modify the variable
projectile-known-projects-file
. –
Nachison @Nachison please see emacs.stackexchange.com/questions/64159/… –
Array
© 2022 - 2024 — McMap. All rights reserved.
~/.emacs.d/.cache/projectile-bookmarks.eld
. – Messenia