yazi/yazi-plugin/preset/ya.lua
2024-02-22 07:01:23 +08:00

66 lines
1.4 KiB
Lua

table.unpack = table.unpack or unpack
ya = ya or {}
function ya.clamp(min, x, max)
if x < min then
return min
elseif x > max then
return max
else
return x
end
end
function ya.round(x) return x >= 0 and math.floor(x + 0.5) or math.ceil(x - 0.5) end
function ya.flat(t)
local r = {}
for _, v in ipairs(t) do
if type(v) == "table" then
for _, v2 in ipairs(ya.flat(v)) do
r[#r + 1] = v2
end
else
r[#r + 1] = v
end
end
return r
end
function ya.sync(f)
YAZI_SYNC_CALLS = YAZI_SYNC_CALLS + 1
local name, calls = YAZI_PLUGIN_NAME, YAZI_SYNC_CALLS
if not YAZI_SYNC_BLOCKS then
return function(...) return ya.plugin_retrieve(name, calls, ...) end
end
YAZI_SYNC_BLOCKS[name] = YAZI_SYNC_BLOCKS[name] or {}
YAZI_SYNC_BLOCKS[name][calls] = f
return function(...) return f(package.loaded[name], ...) end
end
function ya.basename(str) return string.gsub(str, "(.*[/\\])(.*)", "%2") end
function ya.readable_size(size)
local units = { "B", "K", "M", "G", "T", "P", "E", "Z", "Y", "R", "Q" }
local i = 1
while size > 1024.0 and i < #units do
size = size / 1024.0
i = i + 1
end
return string.format("%.1f%s", size, units[i])
end
function ya.readable_path(path)
local home = os.getenv("HOME") or os.getenv("USERPROFILE")
if not home then
return path
elseif string.sub(path, 1, #home) == home then
return "~" .. string.sub(path, #home + 1)
else
return path
end
end