From 4af25547dbe4517c7cb1d422c592d84c793c40fb Mon Sep 17 00:00:00 2001 From: yetone Date: Sun, 31 Aug 2025 23:11:00 +0800 Subject: [PATCH] fix: refine separator in full view (#2664) --- lua/avante/sidebar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/avante/sidebar.lua b/lua/avante/sidebar.lua index d1fee62..eda6874 100644 --- a/lua/avante/sidebar.lua +++ b/lua/avante/sidebar.lua @@ -1850,7 +1850,7 @@ function Sidebar.get_history_lines(history, ignore_record_prefix) for idx, item in ipairs(group) do if idx ~= 1 then if ignore_record_prefix then - res = vim.list_extend(res, { Line:new({ { "" } }) }) + res = vim.list_extend(res, { Line:new({ { "" } }), Line:new({ { "" } }) }) else res = vim.list_extend(res, { Line:new({ { "" } }), Line:new({ { RESP_SEPARATOR } }), Line:new({ { "" } }) }) end