Skip to content

Commit 89259f9

Browse files
committed
fix: drop prints
Closes #179
1 parent b2380a0 commit 89259f9

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

lua/blink/cmp/fuzzy/init.lua

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ function fuzzy.get_query()
6868
-- Since sub(1, 1) returns a single char string, we need to check if that single char matches
6969
-- and otherwise return an empty string
7070
if range[1] == range[2] and line:sub(range[1], range[1]):match(cmp_config.keyword_regex) == nil then return '' end
71-
vim.print(string.sub(line, range[1], range[2]))
7271
return string.sub(line, range[1], range[2])
7372
end
7473

lua/blink/cmp/sources/lsp.lua

-4
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,6 @@ function lsp:get_completions(context, callback)
147147
vim.list_extend(combined_response.items, response.items)
148148
end
149149

150-
for _, item in ipairs(combined_response.items) do
151-
if item.label == 'len' then vim.print(item) end
152-
end
153-
154150
callback(combined_response)
155151
end)
156152
end

0 commit comments

Comments
 (0)