Restore chat history

This commit is contained in:
Jonas Widen 2025-03-16 20:11:16 +01:00
parent 38aca36dfa
commit b950be8cd0

View File

@ -121,12 +121,17 @@ function M.update_content(content, is_new_chat, is_thinking)
else else
-- For actual messages -- For actual messages
local display_lines = {} local display_lines = {}
local last_message_start_line = 1
-- Add all messages from history -- Add all messages from history
for i, msg in ipairs(state.conversation_history) do for i, msg in ipairs(state.conversation_history) do
if i > 1 then -- Add separator before messages (except first) if i > 1 then -- Add separator before messages (except first)
table.insert(display_lines, "━━━━━━━━━━━━━━━━━━━━━━━━━━") table.insert(display_lines, "━━━━━━━━━━━━━━━━━━━━━━━━━━")
end end
-- Keep track of where the last message starts
if i == #state.conversation_history then
last_message_start_line = #display_lines + 1
end
-- Add prefix based on role -- Add prefix based on role
local prefix = msg.role == "user" and "User: " or "Assistant: " local prefix = msg.role == "user" and "User: " or "Assistant: "
local first_line = true local first_line = true
@ -144,14 +149,13 @@ function M.update_content(content, is_new_chat, is_thinking)
-- Set the buffer content -- Set the buffer content
if #display_lines > 0 then if #display_lines > 0 then
vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, display_lines) vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, display_lines)
-- Scroll to the start of the last message
vim.api.nvim_win_set_cursor(state.winnr, {last_message_start_line, 0})
vim.cmd('normal! zt')
end end
end end
vim.api.nvim_buf_set_option(state.bufnr, 'modifiable', false) vim.api.nvim_buf_set_option(state.bufnr, 'modifiable', false)
-- Scroll to show new content
vim.api.nvim_win_set_cursor(state.winnr, {1, 0})
vim.cmd('normal! zt')
vim.cmd('wincmd p') vim.cmd('wincmd p')
end end