fix: statusline hidden in Avante (#2477)

This commit is contained in:
Marcos Romero Lamas
2025-07-27 08:57:24 +02:00
committed by GitHub
parent d8ec4e4aa4
commit daa419c79b

View File

@@ -927,7 +927,7 @@ local base_win_options = {
.. ",Normal:"
.. Highlights.AVANTE_SIDEBAR_NORMAL,
winbar = "",
statusline = " ",
statusline = vim.o.laststatus == 0 and " " or "",
}
function Sidebar:render_header(winid, bufnr, header_text, hl, reverse_hl)