debug completion

This commit is contained in:
Jonas Widen 2025-03-17 07:54:01 +01:00
parent f0594c6eca
commit a69d1c70b1

View File

@ -227,7 +227,7 @@ function M.trigger_completion()
%s
Based on the surrounding code context, what would be the most appropriate code to add at the cursor position?
Return ONLY the code that should be added, no explanation.]], vim.bo.filetype, cursor_line, full_context)
Return ONLY the raw code without any markdown formatting, language hints, or code blocks.]], vim.bo.filetype, cursor_line, full_context)
-- Get completion from Gemini
api.get_response(prompt, nil, function(response, error)
@ -304,7 +304,7 @@ Return ONLY the code that should be added, no explanation.]], vim.bo.filetype, c
%s
Complete the code at the cursor position. Consider the syntax and style of the surrounding code.
Return ONLY the completion that would naturally follow, no explanation.
Return ONLY the raw completion text without any markdown formatting, language hints, or code blocks.
The completion can be multiple lines if appropriate for the context.]], file_type, cursor_line, full_context)
-- Check cache first