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:
Andrew Whatson 2019-05-29 00:01:45 +10:00
parent febeed2526
commit 2a511a6576
4 changed files with 37 additions and 4 deletions

View file

@ -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))