mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
doom-project-find-file: add helm-find-files as a fallback
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user