fix: refine separator in full view (#2664)
This commit is contained in:
@@ -1850,7 +1850,7 @@ function Sidebar.get_history_lines(history, ignore_record_prefix)
|
|||||||
for idx, item in ipairs(group) do
|
for idx, item in ipairs(group) do
|
||||||
if idx ~= 1 then
|
if idx ~= 1 then
|
||||||
if ignore_record_prefix then
|
if ignore_record_prefix then
|
||||||
res = vim.list_extend(res, { Line:new({ { "" } }) })
|
res = vim.list_extend(res, { Line:new({ { "" } }), Line:new({ { "" } }) })
|
||||||
else
|
else
|
||||||
res = vim.list_extend(res, { Line:new({ { "" } }), Line:new({ { RESP_SEPARATOR } }), Line:new({ { "" } }) })
|
res = vim.list_extend(res, { Line:new({ { "" } }), Line:new({ { RESP_SEPARATOR } }), Line:new({ { "" } }) })
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user