Restore chat history

This commit is contained in:
Jonas Widen 2025-03-16 19:27:13 +01:00
parent c3346f2274
commit fa6a890db8

View File

@ -6,7 +6,7 @@ local state = {
bufnr = nil,
winnr = nil,
current_context = nil,
conversation_history = {} -- Add conversation history to state
conversation_history = {}
}
local function setup_chat_highlighting(bufnr)
@ -126,6 +126,13 @@ function M.update_content(content, is_new_chat, is_thinking)
end
if is_new_chat then
-- If it's a new chat but we have history, append to existing content
if #state.conversation_history > 0 and not is_thinking then
local current_lines = vim.api.nvim_buf_get_lines(state.bufnr, 0, -1, false)
for i = #current_lines, 1, -1 do
table.insert(lines, 1, current_lines[i])
end
end
vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, lines)
else
vim.api.nvim_buf_set_lines(state.bufnr, -1, -1, false, lines)