Skip to content

Commit 9846c2d

Browse files
committed
fix: remove debug prints
1 parent 0626cb5 commit 9846c2d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lua/blink/cmp/sources/snippets/utils.lua

-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,7 @@ function utils.get_tab_stops(snippet)
7070
local lines = tostring(child) == '' and {} or vim.split(tostring(child), '\n')
7171
line = line + math.max(#lines - 1, 0)
7272
character = #lines == 0 and character or #lines > 1 and #lines[#lines] or (character + #lines[#lines])
73-
vim.print('Line: ' .. line .. ' Character: ' .. character)
7473
if child.type == grammar.NodeType.Placeholder or child.type == grammar.NodeType.Tabstop then
75-
vim.print(child)
7674
table.insert(tabstops, { index = child.data.tabstop, line = line, character = character })
7775
end
7876
end

0 commit comments

Comments
 (0)