mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-16 15:56:52 -05:00
Add +prescient option for :completion ivy
This provides an alternative backend for filtering and sorting ivy searches. Uses prescient instead of flx for fuzzy completion when both +prescient and +fuzzy are selected.
This commit is contained in:
@@ -10,8 +10,10 @@
|
||||
(package! ivy-rich)
|
||||
(package! wgrep)
|
||||
|
||||
(when (featurep! +fuzzy)
|
||||
(package! flx))
|
||||
(if (featurep! +prescient)
|
||||
(package! ivy-prescient)
|
||||
(when (featurep! +fuzzy)
|
||||
(package! flx)))
|
||||
|
||||
(when (and EMACS26+ (featurep! +childframe))
|
||||
(package! ivy-posframe))
|
||||
|
Reference in New Issue
Block a user