We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4be059 commit 9b9647bCopy full SHA for 9b9647b
lua/blink/cmp/windows/autocomplete.lua
@@ -257,6 +257,7 @@ function autocomplete.draw()
257
-- Some LSPs can return labels with newlines.
258
-- Escape them to avoid errors in nvim_buf_set_lines when rendering the autocomplete menu.
259
local label = item.label:gsub('\n', '\\n')
260
+ if config.nerd_font_variant == 'normal' then label = label:gsub('…', '… ') end
261
262
table.insert(
263
components_list,
0 commit comments