Restore chat history

This commit is contained in:
Jonas Widen 2025-03-16 19:21:18 +01:00
parent 86709a51ba
commit 57e4f6ff54

View File

@ -114,25 +114,18 @@ end
function M.update_content(content, is_new_chat)
vim.api.nvim_buf_set_option(state.bufnr, 'modifiable', true)
if is_new_chat then
-- Don't clear existing content, append to it
local lines = vim.split(content, "\n")
if #state.conversation_history > 0 then
if #state.conversation_history > 1 then -- Check if there's more than one message
-- Add separator before new content
local separator = "━━━━━━━━━━━━━━━━━━━━━━━━━━"
table.insert(lines, 1, separator)
-- Get current buffer content
local current_lines = vim.api.nvim_buf_get_lines(state.bufnr, 0, -1, false)
-- Combine existing content with new content
for i = #current_lines, 1, -1 do
table.insert(lines, 1, current_lines[i])
end
end
if is_new_chat then
vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, lines)
else
local separator = "━━━━━━━━━━━━━━━━━━━━━━━━━━"
vim.api.nvim_buf_set_lines(state.bufnr, -1, -1, false, {separator})
vim.api.nvim_buf_set_lines(state.bufnr, -1, -1, false, vim.split(content, "\n"))
vim.api.nvim_buf_set_lines(state.bufnr, -1, -1, false, lines)
end
vim.api.nvim_buf_set_option(state.bufnr, 'modifiable', false)