From c81f36fa179fbb56717b4f7ebde4a146fefef191 Mon Sep 17 00:00:00 2001 From: Jonas Widen Date: Sun, 16 Mar 2025 17:58:46 +0100 Subject: [PATCH] Minor fix --- lua/gemini/init.lua | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/lua/gemini/init.lua b/lua/gemini/init.lua index 74e14cd..57e294c 100644 --- a/lua/gemini/init.lua +++ b/lua/gemini/init.lua @@ -141,12 +141,16 @@ local function update_chat_window(new_content) vim.api.nvim_buf_set_option(chat_bufnr, 'modifiable', false) end - -- Scroll to bottom + -- Find the start of the current query (last line count - number of lines in new_content + 1) local line_count = vim.api.nvim_buf_line_count(chat_bufnr) - vim.api.nvim_win_set_cursor(chat_winnr, {line_count, 0}) - - -- Ensure the last line is visible - vim.api.nvim_command('normal! zz') + local new_content_lines = #vim.split(new_content, "\n") + local query_start_line = line_count - new_content_lines + 1 + + -- Set cursor to the start of current query + vim.api.nvim_win_set_cursor(chat_winnr, {query_start_line, 0}) + + -- Scroll the window to show the query at the top + vim.cmd('normal! zt') -- Return focus to the previous window vim.cmd('wincmd p')