We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f2f74f commit 33946d6Copy full SHA for 33946d6
lua/blink/cmp/windows/autocomplete.lua
@@ -250,6 +250,7 @@ function autocomplete.draw()
250
for _, item in ipairs(autocomplete.items) do
251
local kind = require('blink.cmp.types').CompletionItemKind[item.kind] or 'Unknown'
252
local kind_icon = config.kind_icons[kind] or config.kind_icons.Field
253
+ item.label = item.label:gsub('\n', '\\n')
254
255
table.insert(
256
components_list,
0 commit comments