Fix #5125: mix snippets with completion candidates

So snippets aren't all the way at the bottom of the candidate list.

Closes #5220
This commit is contained in:
Henrik Lissner 2021-07-09 13:25:14 -04:00
parent bafb392031
commit ba716d69f0

View file

@ -2,7 +2,7 @@
(defvar +lsp-company-backends (defvar +lsp-company-backends
(if (featurep! :editor snippets) (if (featurep! :editor snippets)
'(:separate company-capf company-yasnippet) '(company-capf :with company-yasnippet)
'company-capf) 'company-capf)
"The backends to prepend to `company-backends' in `lsp-mode' buffers. "The backends to prepend to `company-backends' in `lsp-mode' buffers.
Can be a list of backends; accepts any value `company-backends' accepts.") Can be a list of backends; accepts any value `company-backends' accepts.")