From 49bf79a3804830e66f33042db21972bd22a0f82b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 18 May 2020 23:34:47 -0400 Subject: [PATCH] Restore .projectile recognition Why it was removed in the first place: hlissner/doom-emacs#1974 Why it's being restored: seems this causes too much confusion. Folks ask why projectile doesn't recognize their projects. It's too much of maintenance hassle. We'll deal with the breaking changes project.el will introduce when we cross that bridge. Closes #3074 --- core/core-projects.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/core-projects.el b/core/core-projects.el index dff3aec43..d1a840b9b 100644 --- a/core/core-projects.el +++ b/core/core-projects.el @@ -67,7 +67,8 @@ Emacs.") ;; In the interest of performance, we reduce the number of project root marker ;; files/directories projectile searches for when resolving the project root. (setq projectile-project-root-files-bottom-up - (append '(".project" ; doom project marker + (append '(".projectile" ; projectile's root marker + ".project" ; doom project marker ".git") ; Git VCS root dir (when (executable-find "hg") '(".hg")) ; Mercurial VCS root dir