doom-project-find-file: add helm-find-files as a fallback
This commit is contained in:
parent
6ab16621e0
commit
f696ff32f4
1 changed files with 2 additions and 0 deletions
|
@ -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))
|
(project-find-file-in nil (list default-directory) nil))
|
||||||
((fboundp 'counsel-file-jump) ; ivy only
|
((fboundp 'counsel-file-jump) ; ivy only
|
||||||
(call-interactively #'counsel-file-jump))
|
(call-interactively #'counsel-file-jump))
|
||||||
|
((fboundp 'helm-find-files)
|
||||||
|
(call-interactively #'helm-find-files))
|
||||||
((call-interactively #'find-file)))))
|
((call-interactively #'find-file)))))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue