We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bcb14b commit 04b8325Copy full SHA for 04b8325
lua/blink/cmp/sources/cmdline/init.lua
@@ -266,11 +266,10 @@ function cmdline:get_completions(context, callback)
266
267
if option_info and option_info.type == 'boolean' then
268
filter_text = 'no' .. filter_text
269
- label_details.description = 'no' .. label_details.description
270
items[#items + 1] = vim.tbl_deep_extend('force', {}, item, {
271
label = filter_text,
272
filterText = filter_text,
273
- labelDetails = label_details,
+ labelDetails = { description = 'no' .. label_details.description },
274
sortText = filter_text,
275
textEdit = { newText = 'no' .. new_text },
276
}) --[[@as blink.cmp.CompletionItem]]
0 commit comments