Minor fix
This commit is contained in:
parent
6c4aa6604a
commit
4b7d5e9204
@ -162,7 +162,7 @@ local function gemini_query(prompt, context)
|
|||||||
current_context = context
|
current_context = context
|
||||||
|
|
||||||
-- Show initial message in chat window and ensure it's visible
|
-- Show initial message in chat window and ensure it's visible
|
||||||
local initial_content = "\nUser: " .. prompt .. "\n\nAssistant: Thinking..."
|
local initial_content = "User: " .. prompt .. "\n\nAssistant: Thinking..."
|
||||||
update_chat_window(initial_content)
|
update_chat_window(initial_content)
|
||||||
|
|
||||||
-- Force Neovim to update the screen
|
-- Force Neovim to update the screen
|
||||||
@ -170,22 +170,33 @@ local function gemini_query(prompt, context)
|
|||||||
|
|
||||||
local response = api.get_response(prompt, context)
|
local response = api.get_response(prompt, context)
|
||||||
if response then
|
if response then
|
||||||
-- Replace "Thinking..." with the actual response
|
-- Make buffer modifiable
|
||||||
|
vim.api.nvim_buf_set_option(chat_bufnr, 'modifiable', true)
|
||||||
|
|
||||||
|
-- Get all lines
|
||||||
local lines = vim.api.nvim_buf_get_lines(chat_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(chat_bufnr, 0, -1, false)
|
||||||
for i = #lines, 1, -1 do
|
|
||||||
if lines[i]:match("^Assistant: Thinking...") then
|
-- Find and remove the "Thinking..." line
|
||||||
vim.api.nvim_buf_set_option(chat_bufnr, 'modifiable', true)
|
for i = 1, #lines do
|
||||||
|
if lines[i] == "Assistant: Thinking..." then
|
||||||
-- Remove the "Thinking..." line
|
-- Remove the "Thinking..." line
|
||||||
vim.api.nvim_buf_set_lines(chat_bufnr, i, i + 1, false, {})
|
table.remove(lines, i)
|
||||||
-- Split response into lines and insert "Assistant: " at the start of first line
|
-- Insert response lines
|
||||||
local response_lines = vim.split(response, "\n")
|
local response_lines = vim.split(response, "\n")
|
||||||
response_lines[1] = "Assistant: " .. response_lines[1]
|
response_lines[1] = "Assistant: " .. response_lines[1]
|
||||||
vim.api.nvim_buf_set_lines(chat_bufnr, i, i, false, response_lines)
|
for j = #response_lines, 1, -1 do
|
||||||
vim.api.nvim_buf_set_option(chat_bufnr, 'modifiable', false)
|
table.insert(lines, i, response_lines[j])
|
||||||
|
end
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Update buffer with modified lines
|
||||||
|
vim.api.nvim_buf_set_lines(chat_bufnr, 0, -1, false, lines)
|
||||||
|
|
||||||
|
-- Make buffer unmodifiable
|
||||||
|
vim.api.nvim_buf_set_option(chat_bufnr, 'modifiable', false)
|
||||||
|
|
||||||
-- Move focus to chat window
|
-- Move focus to chat window
|
||||||
if chat_winnr and vim.api.nvim_win_is_valid(chat_winnr) then
|
if chat_winnr and vim.api.nvim_win_is_valid(chat_winnr) then
|
||||||
vim.api.nvim_set_current_win(chat_winnr)
|
vim.api.nvim_set_current_win(chat_winnr)
|
||||||
@ -196,10 +207,11 @@ local function gemini_query(prompt, context)
|
|||||||
else
|
else
|
||||||
-- Replace "Thinking..." with error message
|
-- Replace "Thinking..." with error message
|
||||||
local lines = vim.api.nvim_buf_get_lines(chat_bufnr, 0, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(chat_bufnr, 0, -1, false)
|
||||||
for i = #lines, 1, -1 do
|
for i = 1, #lines do
|
||||||
if lines[i]:match("^Assistant: Thinking...") then
|
if lines[i] == "Assistant: Thinking..." then
|
||||||
|
lines[i] = "Assistant: Failed to get response from Gemini API"
|
||||||
vim.api.nvim_buf_set_option(chat_bufnr, 'modifiable', true)
|
vim.api.nvim_buf_set_option(chat_bufnr, 'modifiable', true)
|
||||||
vim.api.nvim_buf_set_lines(chat_bufnr, i, i + 1, false, {"Assistant: Failed to get response from Gemini API"})
|
vim.api.nvim_buf_set_lines(chat_bufnr, 0, -1, false, lines)
|
||||||
vim.api.nvim_buf_set_option(chat_bufnr, 'modifiable', false)
|
vim.api.nvim_buf_set_option(chat_bufnr, 'modifiable', false)
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user