feat: new no-status.yazi plugin
This commit is contained in:
11
no-status.yazi/init.lua
Normal file
11
no-status.yazi/init.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
local function setup()
|
||||
local old_layout = Tab.layout
|
||||
|
||||
Status.render = 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 }
|
||||
Reference in New Issue
Block a user