From e9608ab93921ffae7de57f0ed5f91404bb2b1ea0 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 14 Oct 2018 23:59:26 -0400 Subject: [PATCH] doom-project-find-file: unset projectile-project-root Instead of setting it default-directory, which can cause symlink resolution issues. --- core/autoload/projects.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/projects.el b/core/autoload/projects.el index 6662b9863..bc1c911b0 100644 --- a/core/autoload/projects.el +++ b/core/autoload/projects.el @@ -62,7 +62,7 @@ they are absolute." "Fuzzy-find a file under DIR." (without-project-cache! (let* ((default-directory (file-truename dir)) - (projectile-project-root default-directory)) + projectile-project-root) (call-interactively ;; completion modules may remap this command (or (command-remapping #'projectile-find-file)