debug completion
This commit is contained in:
parent
4cc8a3efd1
commit
8b6a2c7454
@ -167,8 +167,8 @@ function M.trigger_completion()
|
|||||||
-- Construct context from buffer
|
-- Construct context from buffer
|
||||||
local context = {}
|
local context = {}
|
||||||
|
|
||||||
-- Add up to 5 previous lines for context (reduced from 10)
|
-- Add up to 10 previous lines for context
|
||||||
local start_line = math.max(1, line - 5)
|
local start_line = math.max(1, line - 10)
|
||||||
for i = start_line, line - 1 do
|
for i = start_line, line - 1 do
|
||||||
table.insert(context, lines[i])
|
table.insert(context, lines[i])
|
||||||
end
|
end
|
||||||
@ -176,12 +176,18 @@ function M.trigger_completion()
|
|||||||
-- Add current line
|
-- Add current line
|
||||||
table.insert(context, current_line)
|
table.insert(context, current_line)
|
||||||
|
|
||||||
|
-- Add up to 10 lines after current line
|
||||||
|
local end_line = math.min(#lines, line + 10)
|
||||||
|
for i = line + 1, end_line do
|
||||||
|
table.insert(context, lines[i])
|
||||||
|
end
|
||||||
|
|
||||||
-- Combine all lines
|
-- Combine all lines
|
||||||
local full_context = table.concat(context, "\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. Return ONLY the completion that would naturally follow, no explanation:\n%s",
|
"Complete this code. Consider the context (10 lines before and after). Return ONLY the completion that would naturally follow at the cursor position, no explanation:\n%s",
|
||||||
full_context
|
full_context
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user