We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdb1497 commit e08ae37Copy full SHA for e08ae37
lua/blink/cmp/sources/lib/utils.lua
@@ -10,6 +10,8 @@ function utils.blink_item_to_lsp_item(item)
10
lsp_item.cursor_column = nil
11
lsp_item.client_id = nil
12
lsp_item.client_name = nil
13
+ lsp_item.exact = nil
14
+ lsp_item.score = nil
15
return lsp_item
16
end
17
lua/blink/cmp/types.lua
@@ -11,6 +11,8 @@
--- @field kind_name? string
--- @field kind_icon? string
--- @field kind_hl? string
+--- @field exact? boolean
+--- @field score? number
return {
18
-- some plugins mutate the vim.lsp.protocol.CompletionItemKind table
0 commit comments