debug completion

This commit is contained in:
Jonas Widen 2025-03-17 07:45:40 +01:00
parent 9a58c366c6
commit 7ef56e9e48

View File

@ -58,23 +58,14 @@ local function show_suggestion(suggestion, start_col)
local line = vim.api.nvim_win_get_cursor(0)[1] - 1 local line = vim.api.nvim_win_get_cursor(0)[1] - 1
local line_text = vim.api.nvim_buf_get_lines(0, line, line + 1, true)[1] local line_text = vim.api.nvim_buf_get_lines(0, line, line + 1, true)[1]
-- Get text after cursor on current line -- Get text before cursor on current line
local input_after_cursor = string.sub(line_text, start_col + 1) local input_before_cursor = string.sub(line_text, 1, start_col)
local first_line = suggestion_lines[1] local first_line = suggestion_lines[1]
-- Find the longest common prefix between the existing text and suggestion -- If the suggestion starts with what's already typed, remove that part
local common_length = 0 if vim.startswith(first_line, input_before_cursor) then
while common_length < #input_after_cursor and common_length < #first_line do first_line = string.sub(first_line, #input_before_cursor + 1)
if string.sub(input_after_cursor, common_length + 1, common_length + 1) ==
string.sub(first_line, common_length + 1, common_length + 1) then
common_length = common_length + 1
else
break
end end
end
-- Only show the part of suggestion that doesn't overlap
first_line = string.sub(first_line, common_length + 1)
if first_line == "" and #suggestion_lines == 1 then return end if first_line == "" and #suggestion_lines == 1 then return end
@ -103,7 +94,7 @@ local function show_suggestion(suggestion, start_col)
}) })
end end
debug_print("Showing suggestion: '%s' (common length: %d)", first_line, common_length) debug_print("Showing suggestion: '%s'", first_line)
end end
function M.accept_suggestion() function M.accept_suggestion()