Added completion

This commit is contained in:
Jonas Widen 2025-03-16 21:44:38 +01:00
parent 3261aaacdb
commit 103063715f

View File

@ -26,26 +26,50 @@ local function show_suggestion(suggestion, start_col)
if suggestion == "" then return end
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]
-- Validate column position
if start_col > #line_text then
return
end
current_suggestion.text = suggestion
current_suggestion.start_col = start_col
-- Make the text virtual (doesn't affect actual buffer content)
vim.api.nvim_buf_set_extmark(0, current_suggestion.namespace_id, line, start_col, {
virt_text = {{suggestion, 'GeminiSuggestion'}},
virt_text_pos = 'overlay',
virt_text_pos = 'inline', -- Changed from 'overlay' to 'inline'
virt_text_hide = true, -- Hide when there's other virtual text
})
end
-- Function to accept current suggestion
function M.accept_suggestion()
if current_suggestion.text and current_suggestion.start_col then
if not (current_suggestion.text and current_suggestion.start_col) then
return false
end
local line = vim.api.nvim_win_get_cursor(0)[1] - 1
vim.api.nvim_buf_set_text(0, line, current_suggestion.start_col, line, current_suggestion.start_col, {current_suggestion.text})
local line_text = vim.api.nvim_buf_get_lines(0, line, line + 1, true)[1]
-- Validate column position
if current_suggestion.start_col > #line_text then
clear_suggestion()
return false
end
vim.api.nvim_buf_set_text(
0,
line,
current_suggestion.start_col,
line,
current_suggestion.start_col,
{current_suggestion.text}
)
clear_suggestion()
return true
end
return false
end
function M.trigger_completion()
local cursor = vim.api.nvim_win_get_cursor(0)