tweak(helm): use emacs completion instead

This may fix +fuzzy, as well.

Ref: #6676
Co-authored-by: johanwiden <johanwiden@users.noreply.github.com>
This commit is contained in:
Henrik Lissner 2023-02-23 22:41:03 -05:00
parent 8789e2e5c6
commit 1bfa90621b
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -90,8 +90,12 @@ Can be negative.")
;; However, do not add helm completion styles to the front of
;; `completion-styles', since that would be overly intrusive. E.g., it
;; results in `company-capf' returning far to many completion candidates.
;; Instead, append those styles so that they act as a fallback.
;; Instead, append those styles so that they act as a fallback. Variable
;; completion-styles is ignored unless helm-completion-style is customized
;; to 'emacs.
(setq helm-completion-style 'emacs)
(add-to-list 'completion-styles (if fuzzy 'flex 'helm) t))
:config
(set-popup-rule! "^\\*helm" :vslot -100 :size 0.22 :ttl nil)