yazi/plugin/preset/utils.lua

25 lines
565 B
Lua
Raw Normal View History

2023-10-11 19:09:10 +03:00
utils = utils or {}
function utils.basename(str) return string.gsub(str, "(.*[/\\])(.*)", "%2") end
function utils.readable_size(size)
local units = { "B", "KB", "MB", "GB", "TB", "PB", "EB" }
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 utils.readable_path(path)
local home = os.getenv("HOME")
if home == nil then
return path
elseif string.sub(path, 1, #home) == home then
return "~" .. string.sub(path, #home + 1)
else
return path
end
end