fix: do not auto resize in full view (#2661)

This commit is contained in:
yetone
2025-08-31 22:09:18 +08:00
committed by GitHub
parent bcbe0347d8
commit e63427fb9a
2 changed files with 3 additions and 0 deletions

View File

@@ -246,6 +246,7 @@ function H.autocmds()
local sidebar = M.get()
if not sidebar then return end
if not sidebar:is_open() then return end
if sidebar.is_in_full_view then return end
sidebar:resize()
end,
})