From ba716d69f0f680125e2411ac050086d54d7c8a4b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 9 Jul 2021 13:25:14 -0400 Subject: [PATCH] Fix #5125: mix snippets with completion candidates So snippets aren't all the way at the bottom of the candidate list. Closes #5220 --- modules/tools/lsp/+lsp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/tools/lsp/+lsp.el b/modules/tools/lsp/+lsp.el index 40e8f4c55..2dc9a5a8f 100644 --- a/modules/tools/lsp/+lsp.el +++ b/modules/tools/lsp/+lsp.el @@ -2,7 +2,7 @@ (defvar +lsp-company-backends (if (featurep! :editor snippets) - '(:separate company-capf company-yasnippet) + '(company-capf :with company-yasnippet) 'company-capf) "The backends to prepend to `company-backends' in `lsp-mode' buffers. Can be a list of backends; accepts any value `company-backends' accepts.")