From f696ff32f4045b4de6c948ec6d23cb3a8f2d7a23 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 13 May 2019 00:18:51 -0400 Subject: [PATCH] doom-project-find-file: add helm-find-files as a fallback --- core/autoload/projects.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/autoload/projects.el b/core/autoload/projects.el index a27778ec1..8ba56b479 100644 --- a/core/autoload/projects.el +++ b/core/autoload/projects.el @@ -113,6 +113,8 @@ If DIR is not a project, it will be indexed (but not cached)." (project-find-file-in nil (list default-directory) nil)) ((fboundp 'counsel-file-jump) ; ivy only (call-interactively #'counsel-file-jump)) + ((fboundp 'helm-find-files) + (call-interactively #'helm-find-files)) ((call-interactively #'find-file))))) ;;;###autoload