diff --git a/core/autoload/projects.el b/core/autoload/projects.el index 93c3117e8..6346caf8d 100644 --- a/core/autoload/projects.el +++ b/core/autoload/projects.el @@ -128,6 +128,9 @@ If DIR is not a project, it will be indexed (but not cached)." (if (doom-module-p :completion 'ivy) #'counsel-projectile-find-file #'projectile-find-file))) + ((and (bound-and-true-p vertico-mode) + (fboundp 'consult-find)) + (consult-find default-directory)) ((and (bound-and-true-p ivy-mode) (fboundp 'counsel-file-jump)) (call-interactively #'counsel-file-jump)) diff --git a/modules/config/default/autoload/files.el b/modules/config/default/autoload/files.el index 21bdef833..9f21ed0c7 100644 --- a/modules/config/default/autoload/files.el +++ b/modules/config/default/autoload/files.el @@ -36,7 +36,7 @@ (interactive) (if (featurep! :completion ivy) (call-interactively #'counsel-file-jump) - (cmd! (doom-project-find-file default-directory)))) + (doom-project-find-file default-directory))) ;;;###autoload (defun +default/discover-projects (arg)