Review and cleanup

This commit is contained in:
Jonas Widen 2025-03-18 18:28:12 +01:00
parent 34af659844
commit 0c56f24336
2 changed files with 62 additions and 59 deletions

View File

@ -14,6 +14,34 @@ local current_suggestion = {
max_context_lines = 10, -- Maximum number of context lines to send max_context_lines = 10, -- Maximum number of context lines to send
} }
-- Add at the top of the file with other state variables
local completion_cache = {
last_line = nil,
last_col = nil,
suggestions = {},
timestamp = 0,
ttl = 30000 -- Cache TTL in milliseconds (30 seconds)
}
-- Add this function
local function get_cached_suggestion(line, col)
local now = vim.loop.now()
if completion_cache.last_line == line
and completion_cache.last_col == col
and (now - completion_cache.timestamp) < completion_cache.ttl then
return completion_cache.suggestions
end
return nil
end
-- Add this function
local function cache_suggestion(line, col, suggestions)
completion_cache.last_line = line
completion_cache.last_col = col
completion_cache.suggestions = suggestions
completion_cache.timestamp = vim.loop.now()
end
-- Helper function to get visible lines around cursor -- Helper function to get visible lines around cursor
local function get_visible_lines() local function get_visible_lines()
local win = vim.api.nvim_get_current_win() local win = vim.api.nvim_get_current_win()
@ -246,9 +274,11 @@ function M.trigger_completion()
if not vim.b.gemini_completion_enabled then return end if not vim.b.gemini_completion_enabled then return end
if vim.fn.pumvisible() ~= 0 then return end if vim.fn.pumvisible() ~= 0 then return end
-- Get current line and cursor position
local cursor = vim.api.nvim_win_get_cursor(0) local cursor = vim.api.nvim_win_get_cursor(0)
local line = cursor[1] - 1 local line = cursor[1] - 1
local col = cursor[2] local col = cursor[2]
local current_line = vim.api.nvim_get_current_line()
-- Check filetype exclusions -- Check filetype exclusions
local config = require("gemini.config") local config = require("gemini.config")
@ -256,12 +286,34 @@ function M.trigger_completion()
return return
end end
-- Get context and trigger completion -- Get context
local visible_lines, relative_cursor = get_visible_lines() local visible_lines, relative_cursor = get_visible_lines()
local context = get_context_around_cursor(visible_lines, relative_cursor, config.options.completion.max_context_lines) local context = get_context_around_cursor(visible_lines, relative_cursor, config.options.completion.max_context_lines)
-- Use improved debouncing -- Create prompt for API
trigger_completion_debounced(context) local prompt = table.concat(context, "\n") .. "\nPlease complete the following line:\n" .. current_line
-- Make API request
api.get_response(prompt, nil, function(response, error)
if error then
vim.notify("Completion error: " .. error, vim.log.levels.ERROR)
return
end
if response then
-- Extract the completion suggestion
local suggestion = response:gsub("^%s*(.-)%s*$", "%1") -- Trim whitespace
-- Show the suggestion
vim.schedule(function()
-- Only show if cursor position hasn't changed
local new_cursor = vim.api.nvim_win_get_cursor(0)
if new_cursor[1] - 1 == line and new_cursor[2] == col then
show_suggestion(suggestion, col)
end
end)
end
end)
end end
-- Setup function to create highlight group and keymaps -- Setup function to create highlight group and keymaps

View File

@ -49,67 +49,18 @@ function M.setup(opts)
vim.api.nvim_create_autocmd("BufEnter", { vim.api.nvim_create_autocmd("BufEnter", {
pattern = "*", pattern = "*",
callback = function() callback = function()
-- Only enable for specific filetypes
local ft = vim.bo.filetype
if not vim.tbl_contains(config.options.completion.exclude_filetypes, ft) then
vim.b.gemini_completion_enabled = true vim.b.gemini_completion_enabled = true
end end
end
}) })
-- Completion keymaps -- Add completion trigger keymap
vim.keymap.set('i', '<leader>gg', function() vim.keymap.set('i', '<C-x><C-g>', function()
debug_print("Keymap triggered")
-- Enable completion for current buffer
vim.b.gemini_completion_enabled = true
completion.trigger_completion() completion.trigger_completion()
end, { desc = 'Trigger Gemini completion' }) end, { desc = 'Trigger Gemini completion' })
pcall(vim.treesitter.language.require_language, "markdown")
-- Set up commands
vim.api.nvim_create_user_command("Gemini", function(opts)
if opts.args == "" then
vim.notify("Please provide a prompt for Gemini.", vim.log.levels.WARN)
return
end
M.query(opts.args)
end, {
desc = "Query Google AI",
nargs = "+",
complete = "shellcmd",
})
vim.api.nvim_create_user_command("GeminiClearChat", function()
api.clear_conversation()
chat.clear()
vim.notify("Chat history cleared", vim.log.levels.INFO)
end, {
desc = "Clear Gemini chat history"
})
-- Chat keymaps
vim.keymap.set("n", "<leader>gc", function()
M.prompt_query()
end, { desc = "Chat with Gemini AI" })
vim.keymap.set("n", "<leader>gs", function()
M.prompt_query(get_current_buffer_content())
end, { desc = "Chat with Gemini AI (with buffer context)" })
vim.keymap.set("n", "<leader>gq", function()
api.clear_conversation()
chat.clear()
vim.notify("Chat history cleared", vim.log.levels.INFO)
end, { desc = "Clear Gemini chat history" })
-- Add a command to toggle completion
vim.api.nvim_create_user_command("GeminiToggleCompletion", function()
vim.b.gemini_completion_enabled = not vim.b.gemini_completion_enabled
vim.notify(
string.format("Gemini completion %s",
vim.b.gemini_completion_enabled and "enabled" or "disabled"),
vim.log.levels.INFO
)
end, {
desc = "Toggle Gemini completion"
})
end end
function M.complete(findstart, base) function M.complete(findstart, base)