yazi/yazi-plugin/preset/plugins/mime-dir.lua
2025-10-01 20:03:41 +08:00

11 lines
220 B
Lua

local function fetch(_, job)
local updates = {}
for _, file in ipairs(job.files) do
updates[file.url] = "folder/local"
end
ya.emit("update_mimes", { updates = updates })
return true
end
return { fetch = fetch }