summaryrefslogtreecommitdiff
path: root/mac/.config/yazi/plugins.bak/full-border.yazi/main.lua
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-09-13 17:14:51 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-09-13 17:14:51 +0900
commita3ed0a3cb36d192c37e040d0dfe57c42113f2161 (patch)
treec216d680c4bfbe2e53232af1496c9655e347d79b /mac/.config/yazi/plugins.bak/full-border.yazi/main.lua
parent2e6d3671d0e01ff5751893075e7fc5c53b288f95 (diff)
updates
Diffstat (limited to 'mac/.config/yazi/plugins.bak/full-border.yazi/main.lua')
-rw-r--r--mac/.config/yazi/plugins.bak/full-border.yazi/main.lua43
1 files changed, 0 insertions, 43 deletions
diff --git a/mac/.config/yazi/plugins.bak/full-border.yazi/main.lua b/mac/.config/yazi/plugins.bak/full-border.yazi/main.lua
deleted file mode 100644
index a917e1e..0000000
--- a/mac/.config/yazi/plugins.bak/full-border.yazi/main.lua
+++ /dev/null
@@ -1,43 +0,0 @@
---- @since 25.2.26
-
-local function setup(_, opts)
- local type = opts and opts.type or ui.Border.ROUNDED
- local old_build = Tab.build
-
- Tab.build = function(self, ...)
- local bar = function(c, x, y)
- if x <= 0 or x == self._area.w - 1 or th.mgr.border_symbol ~= "│" then
- return ui.Bar(ui.Edge.TOP)
- end
-
- return ui.Bar(ui.Edge.TOP)
- :area(
- ui.Rect { x = x, y = math.max(0, y), w = ya.clamp(0, self._area.w - x, 1), h = math.min(1, self._area.h) }
- )
- :symbol(c)
- end
-
- local c = self._chunks
- self._chunks = {
- c[1]:pad(ui.Pad.y(1)),
- c[2]:pad(ui.Pad(1, c[3].w > 0 and 0 or 1, 1, c[1].w > 0 and 0 or 1)),
- c[3]:pad(ui.Pad.y(1)),
- }
-
- local style = th.mgr.border_style
- self._base = ya.list_merge(self._base or {}, {
- ui.Border(ui.Edge.ALL):area(self._area):type(type):style(style),
- ui.Bar(ui.Edge.RIGHT):area(self._chunks[1]):style(style),
- ui.Bar(ui.Edge.LEFT):area(self._chunks[3]):style(style),
-
- bar("┬", c[1].right - 1, c[1].y),
- bar("┴", c[1].right - 1, c[1].bottom - 1),
- bar("┬", c[2].right, c[2].y),
- bar("┴", c[2].right, c[2].bottom - 1),
- })
-
- old_build(self, ...)
- end
-end
-
-return { setup = setup }