mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix SPC f F w/ vertico + consult
Not a perfect analogue to counsel-file-jump, but it's a start (and better than the previous no-op).
This commit is contained in:
@ -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))
|
||||
|
Reference in New Issue
Block a user