Added completion

This commit is contained in:
Jonas Widen 2025-03-16 21:26:44 +01:00
parent a6ec0025d4
commit 8d69ca7340
2 changed files with 7 additions and 11 deletions

View File

@ -25,6 +25,7 @@ local function parse_completion_response(response)
end end
function M.get_completion(params, callback) function M.get_completion(params, callback)
vim.notify("Gemini completion triggered", vim.log.levels.INFO)
local cursor = vim.api.nvim_win_get_cursor(0) local cursor = vim.api.nvim_win_get_cursor(0)
local line = cursor[1] local line = cursor[1]
local col = cursor[2] local col = cursor[2]
@ -44,14 +45,7 @@ function M.get_completion(params, callback)
before_cursor before_cursor
) )
-- Check cache first vim.notify("Sending completion request to Gemini", vim.log.levels.INFO)
local cache_key = prefix .. before_cursor
if completion_cache[cache_key] then
vim.schedule(function()
callback(completion_cache[cache_key])
end)
return
end
-- Get completion from Gemini -- Get completion from Gemini
api.get_response(prompt, nil, function(response, error) api.get_response(prompt, nil, function(response, error)
@ -63,8 +57,8 @@ function M.get_completion(params, callback)
return return
end end
vim.notify("Received completion response", vim.log.levels.INFO)
local items = parse_completion_response(response) local items = parse_completion_response(response)
completion_cache[cache_key] = items
vim.schedule(function() vim.schedule(function()
callback(items) callback(items)
end) end)

View File

@ -85,8 +85,10 @@ function M.setup(opts)
vim.notify("Chat history cleared", vim.log.levels.INFO) vim.notify("Chat history cleared", vim.log.levels.INFO)
end, { desc = "Clear Gemini chat history" }) end, { desc = "Clear Gemini chat history" })
-- Add default completion keymap -- Change the completion keymap to a more unique combination
vim.keymap.set('i', '<C-Space>', function() vim.keymap.set('i', '<C-g><C-g>', function()
-- Force Gemini's omnifunc
vim.api.nvim_command('set omnifunc=v:lua.require\'gemini\'.complete')
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes('<C-x><C-o>', true, true, true), 'n', true) vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes('<C-x><C-o>', true, true, true), 'n', true)
end, { desc = 'Trigger Gemini completion' }) end, { desc = 'Trigger Gemini completion' })
end end