Added completion

This commit is contained in:
Jonas Widen 2025-03-16 21:30:11 +01:00
parent 8d69ca7340
commit a91239f4c1
2 changed files with 37 additions and 28 deletions

View File

@ -6,6 +6,10 @@ local completion_cache = {}
-- Helper function to create completion items from Gemini response -- Helper function to create completion items from Gemini response
local function parse_completion_response(response) local function parse_completion_response(response)
if type(response) ~= "string" then
return {}
end
-- Split response into lines and filter out empty ones -- Split response into lines and filter out empty ones
local lines = vim.split(response, "\n") local lines = vim.split(response, "\n")
local items = {} local items = {}
@ -13,14 +17,25 @@ local function parse_completion_response(response)
for _, line in ipairs(lines) do for _, line in ipairs(lines) do
if line and line:match("^%s*[^%s]") then -- Skip empty lines if line and line:match("^%s*[^%s]") then -- Skip empty lines
table.insert(items, { table.insert(items, {
word = line, -- Changed from label to word word = line:match("^%s*(.-)%s*$"), -- Trim whitespace
kind = vim.lsp.protocol.CompletionItemKind.Text, kind = vim.lsp.protocol.CompletionItemKind.Text,
menu = "[Gemini]", -- Added menu indicator menu = "[Gemini]",
info = line, -- Added info info = line,
}) })
end end
end end
-- Always return at least one item
if #items == 0 then
items = {
{
word = "No completions found",
kind = vim.lsp.protocol.CompletionItemKind.Text,
menu = "[Gemini]"
}
}
end
return items return items
end end
@ -51,17 +66,19 @@ function M.get_completion(params, callback)
api.get_response(prompt, nil, function(response, error) api.get_response(prompt, nil, function(response, error)
if error then if error then
vim.notify("Completion error: " .. error, vim.log.levels.ERROR) vim.notify("Completion error: " .. error, vim.log.levels.ERROR)
vim.schedule(function() callback({
callback({}) {
end) word = "Error: " .. error,
kind = vim.lsp.protocol.CompletionItemKind.Text,
menu = "[Gemini]"
}
})
return return
end end
vim.notify("Received completion response", vim.log.levels.INFO) vim.notify("Received completion response", vim.log.levels.INFO)
local items = parse_completion_response(response) local items = parse_completion_response(response)
vim.schedule(function() callback(items)
callback(items)
end)
end) end)
end end

View File

@ -103,28 +103,20 @@ function M.complete(findstart, base)
end end
return start return start
else else
-- Create a completion timer -- Return empty list immediately to keep menu open
local timer = vim.loop.new_timer() local items = {
local items = {} { word = "Loading...", kind = vim.lsp.protocol.CompletionItemKind.Text }
local done = false }
-- Start completion request -- Start completion request
completion.get_completion({ word = base }, function(completions) completion.get_completion({ word = base }, function(completions)
items = completions if #completions > 0 then
done = true vim.schedule(function()
-- Trigger completion menu refresh -- Update the completion menu
vim.schedule(function() vim.fn.complete(vim.fn.col('.') - #base, completions)
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes('<C-x><C-o>', true, true, true), 'n', true) end)
end)
end)
-- Wait for completion (with timeout)
timer:start(0, 100, vim.schedule_wrap(function()
if not done then
return {}
end end
timer:stop() end)
end))
return items return items
end end