chore: bump the minimum required Yazi version to 25.2.7

This commit is contained in:
sxyazi
2025-02-07 20:23:05 +08:00
parent 02d18be038
commit 07258518f3
18 changed files with 56 additions and 31 deletions

13
no-status.yazi/main.lua Normal file
View File

@@ -0,0 +1,13 @@
--- @since 25.2.7
local function setup()
local old_layout = Tab.layout
Status.redraw = function() return {} end
Tab.layout = function(self, ...)
self._area = ui.Rect { x = self._area.x, y = self._area.y, w = self._area.w, h = self._area.h + 1 }
return old_layout(self, ...)
end
end
return { setup = setup }