debug completion
This commit is contained in:
parent
60d779640b
commit
9e92bac51d
@ -9,6 +9,11 @@ local current_suggestion = {
|
||||
timer = nil
|
||||
}
|
||||
|
||||
-- Debug function
|
||||
local function debug_print(...)
|
||||
vim.notify(string.format(...), vim.log.levels.INFO)
|
||||
end
|
||||
|
||||
-- Helper function to clear suggestion
|
||||
local function clear_suggestion()
|
||||
if current_suggestion.timer then
|
||||
@ -56,6 +61,8 @@ local function show_suggestion(suggestion, start_col)
|
||||
virt_text_pos = 'inline',
|
||||
virt_text_hide = true,
|
||||
})
|
||||
|
||||
debug_print("Showing suggestion: %s", suggestion)
|
||||
end
|
||||
|
||||
function M.accept_suggestion()
|
||||
@ -93,8 +100,9 @@ function M.trigger_completion()
|
||||
vim.fn.timer_stop(current_suggestion.timer)
|
||||
end
|
||||
|
||||
-- Start a new timer for debouncing
|
||||
current_suggestion.timer = vim.fn.timer_start(100, function()
|
||||
debug_print("Triggering completion...")
|
||||
|
||||
-- Get current buffer and cursor info
|
||||
local cursor = vim.api.nvim_win_get_cursor(0)
|
||||
local line = cursor[1]
|
||||
local col = cursor[2]
|
||||
@ -120,11 +128,14 @@ function M.trigger_completion()
|
||||
return
|
||||
end
|
||||
|
||||
debug_print("Getting completion for: %s", prefix)
|
||||
|
||||
-- Construct context from buffer
|
||||
local context = {}
|
||||
|
||||
-- Add previous lines for context
|
||||
for i = 1, line - 1 do
|
||||
-- Add up to 10 previous lines for context
|
||||
local start_line = math.max(1, line - 10)
|
||||
for i = start_line, line - 1 do
|
||||
table.insert(context, lines[i])
|
||||
end
|
||||
|
||||
@ -136,13 +147,16 @@ function M.trigger_completion()
|
||||
|
||||
-- Construct prompt for Gemini
|
||||
local prompt = string.format(
|
||||
"Complete this code. Provide only the completion that would naturally follow, no explanation:\n%s",
|
||||
"Complete this code. Return ONLY the completion that would naturally follow, no explanation:\n%s",
|
||||
full_context
|
||||
)
|
||||
|
||||
-- Get completion from Gemini
|
||||
api.get_response(prompt, nil, function(response, error)
|
||||
if error then return end
|
||||
if error then
|
||||
debug_print("Completion error: %s", error)
|
||||
return
|
||||
end
|
||||
|
||||
if type(response) == "string" then
|
||||
vim.schedule(function()
|
||||
@ -154,7 +168,6 @@ function M.trigger_completion()
|
||||
end)
|
||||
end
|
||||
end)
|
||||
end)
|
||||
end
|
||||
|
||||
-- Setup function to create highlight group and keymaps
|
||||
@ -175,6 +188,7 @@ function M.setup()
|
||||
|
||||
-- Set up autocommand for real-time completion
|
||||
vim.api.nvim_create_autocmd("TextChangedI", {
|
||||
pattern = "*",
|
||||
callback = function()
|
||||
M.trigger_completion()
|
||||
end
|
||||
@ -182,10 +196,13 @@ function M.setup()
|
||||
|
||||
-- Clear suggestion on cursor move
|
||||
vim.api.nvim_create_autocmd({'CursorMovedI', 'CursorMoved'}, {
|
||||
pattern = "*",
|
||||
callback = function()
|
||||
clear_suggestion()
|
||||
end
|
||||
})
|
||||
|
||||
debug_print("Gemini completion setup complete")
|
||||
end
|
||||
|
||||
return M
|
@ -46,20 +46,11 @@ function M.setup(opts)
|
||||
-- Set up completion
|
||||
require("gemini.completion").setup()
|
||||
|
||||
-- Auto-trigger completion after a short delay when typing
|
||||
vim.api.nvim_create_autocmd("TextChangedI", {
|
||||
callback = function()
|
||||
-- Cancel any existing timer
|
||||
if vim.b.completion_timer then
|
||||
vim.fn.timer_stop(vim.b.completion_timer)
|
||||
end
|
||||
|
||||
-- Start new timer
|
||||
vim.b.completion_timer = vim.fn.timer_start(500, function()
|
||||
-- Remove the existing TextChangedI autocmd as it's now handled in completion.lua
|
||||
-- Instead, just ensure the completion is available
|
||||
vim.keymap.set('i', '<C-g><C-g>', function()
|
||||
require("gemini.completion").trigger_completion()
|
||||
end)
|
||||
end
|
||||
})
|
||||
end, { desc = 'Trigger Gemini completion' })
|
||||
|
||||
vim.api.nvim_create_user_command("Gemini", function(opts)
|
||||
if opts.args == "" then
|
||||
|
Loading…
x
Reference in New Issue
Block a user