Restore chat history

This commit is contained in:
Jonas Widen 2025-03-16 19:31:40 +01:00
parent 34c22ed63b
commit 1f8fd2c270

View File

@ -116,12 +116,13 @@ function M.update_content(content, is_new_chat, is_thinking)
local lines = vim.split(content, "\n")
if is_thinking then
-- For thinking message, just replace/append without affecting history
-- For thinking message, just replace content
vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, lines)
else
if is_new_chat then
-- For new messages, show the complete history
-- For actual messages
local display_lines = {}
-- Add all messages from history
for i, msg in ipairs(state.conversation_history) do
if i > 1 then -- Add separator before messages (except first)
table.insert(display_lines, "━━━━━━━━━━━━━━━━━━━━━━━━━━")
@ -131,30 +132,16 @@ function M.update_content(content, is_new_chat, is_thinking)
table.insert(display_lines, line)
end
end
-- Add the new content
if #state.conversation_history > 0 then
table.insert(display_lines, "━━━━━━━━━━━━━━━━━━━━━━━━━━")
end
for _, line in ipairs(lines) do
table.insert(display_lines, line)
end
-- Set the buffer content
vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, display_lines)
else
-- For subsequent messages in the same chat
if #state.conversation_history > 0 then
table.insert(lines, 1, "━━━━━━━━━━━━━━━━━━━━━━━━━━")
end
vim.api.nvim_buf_set_lines(state.bufnr, -1, -1, false, lines)
end
end
vim.api.nvim_buf_set_option(state.bufnr, 'modifiable', false)
-- Scroll to show new content
local line_count = vim.api.nvim_buf_line_count(state.bufnr)
local content_lines = #vim.split(content, "\n")
local start_line = line_count - content_lines + 1
vim.api.nvim_win_set_cursor(state.winnr, {start_line, 0})
vim.api.nvim_win_set_cursor(state.winnr, {1, 0})
vim.cmd('normal! zt')
vim.cmd('wincmd p')
end