From c41e4fe9dd6faee0a13736e94e09639049290cdc Mon Sep 17 00:00:00 2001 From: Jonas Widen Date: Sun, 16 Mar 2025 19:16:40 +0100 Subject: [PATCH] Restore chat history --- lua/gemini/chat.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lua/gemini/chat.lua b/lua/gemini/chat.lua index b988541..73da27c 100644 --- a/lua/gemini/chat.lua +++ b/lua/gemini/chat.lua @@ -6,6 +6,7 @@ local state = { bufnr = nil, winnr = nil, current_context = nil, + conversation_history = {} -- Add conversation history to state } local function setup_chat_highlighting(bufnr) @@ -140,6 +141,16 @@ function M.clear() if state.bufnr and vim.api.nvim_buf_is_valid(state.bufnr) then vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, {}) end + state.conversation_history = {} -- Clear conversation history +end + +-- Add functions to manage conversation history +function M.add_message(role, content) + table.insert(state.conversation_history, {role = role, content = content}) +end + +function M.get_conversation_history() + return state.conversation_history end return M \ No newline at end of file