doom-project-find-file: add helm-find-files as a fallback

This commit is contained in:
Henrik Lissner 2019-05-13 00:18:51 -04:00
parent 6ab16621e0
commit f696ff32f4
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -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