Added completion

This commit is contained in:
Jonas Widen 2025-03-17 06:43:28 +01:00
parent 10557a6fcf
commit 60d779640b

View File

@ -34,11 +34,19 @@ 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]
-- Validate column position -- Get text before cursor on current line
if start_col > #line_text then local prefix = string.sub(line_text, 1, start_col)
return
-- Only show suggestion if it continues the current text
if not suggestion:find("^" .. vim.pesc(prefix), 1, true) then
suggestion = prefix .. suggestion
end end
-- Remove the prefix from the suggestion to avoid duplication
suggestion = suggestion:sub(#prefix + 1)
if suggestion == "" then return end
current_suggestion.text = suggestion current_suggestion.text = suggestion
current_suggestion.start_col = start_col current_suggestion.start_col = start_col
@ -50,29 +58,31 @@ local function show_suggestion(suggestion, start_col)
}) })
end end
-- Function to accept current suggestion
function M.accept_suggestion() function M.accept_suggestion()
if not (current_suggestion.text and current_suggestion.start_col) then if not (current_suggestion.text and current_suggestion.start_col) then
return false return false
end end
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 col = vim.api.nvim_win_get_cursor(0)[2]
-- Validate column position -- Only accept if we're still at or before the suggestion start
if current_suggestion.start_col > #line_text then if col < current_suggestion.start_col then
clear_suggestion()
return false return false
end end
vim.api.nvim_buf_set_text( vim.api.nvim_buf_set_text(
0, 0,
line, line,
current_suggestion.start_col, col,
line, line,
current_suggestion.start_col, col,
{current_suggestion.text} {current_suggestion.text}
) )
-- Move cursor to end of inserted text
vim.api.nvim_win_set_cursor(0, {line + 1, col + #current_suggestion.text})
clear_suggestion() clear_suggestion()
return true return true
end end
@ -99,24 +109,35 @@ function M.trigger_completion()
return return
end end
-- Split into before and after cursor -- Get text before cursor on current line
local before_lines = {} local prefix = string.sub(current_line, 1, col)
-- Copy lines before current line -- Don't trigger on certain conditions
for i = 1, line - 1 do if prefix:match("^%s*$") or -- empty or whitespace
table.insert(before_lines, lines[i]) prefix:match("[%s%-]$") or -- ends with space or dash
#prefix < 3 then -- too short
clear_suggestion()
return
end end
-- Add current line (complete line for context) -- Construct context from buffer
table.insert(before_lines, current_line) local context = {}
-- Add previous lines for context
for i = 1, line - 1 do
table.insert(context, lines[i])
end
-- Add current line
table.insert(context, current_line)
-- Combine all lines -- Combine all lines
local prefix = table.concat(before_lines, "\n") local full_context = table.concat(context, "\n")
-- Construct prompt for Gemini -- Construct prompt for Gemini
local prompt = string.format( local prompt = string.format(
"Complete this code. Only provide the completion, no explanation:\n%s", "Complete this code. Provide only the completion that would naturally follow, no explanation:\n%s",
prefix full_context
) )
-- Get completion from Gemini -- Get completion from Gemini
@ -124,17 +145,13 @@ function M.trigger_completion()
if error then return end if error then return end
if type(response) == "string" then if type(response) == "string" then
-- Get first non-empty line as suggestion vim.schedule(function()
local suggestion = response:match("^%s*(.-)%s*$") -- Check if cursor position is still valid
if suggestion and #suggestion > 0 then local new_cursor = vim.api.nvim_win_get_cursor(0)
vim.schedule(function() if new_cursor[1] == line and new_cursor[2] >= col then
-- Check if cursor position is still the same show_suggestion(response, col)
local new_cursor = vim.api.nvim_win_get_cursor(0) end
if new_cursor[1] == line and new_cursor[2] == col then end)
show_suggestion(suggestion, col)
end
end)
end
end end
end) end)
end) end)