We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f99bf6b commit 28f3a31Copy full SHA for 28f3a31
lua/blink/cmp/sources/snippets/utils.lua
@@ -23,9 +23,7 @@ function utils.read_snippet(snippet, fallback)
23
local description = snippet.description or fallback
24
local body = snippet.body
25
26
- if type(description) == "table" then
27
- description = vim.fn.join(description)
28
- end
+ if type(description) == 'table' then description = vim.fn.join(description, '') end
29
30
if type(prefix) == 'table' then
31
for _, p in ipairs(prefix) do
0 commit comments