yazi/yazi-plugin/preset/plugins/mime.lua
2025-10-21 15:14:08 +08:00

12 lines
342 B
Lua

local function fetch(_, job)
ya.notify {
title = "Deprecated plugin",
content = "The `mime` fetcher is deprecated, use `mime.local` instead in your `yazi.toml`\n\nSee https://github.com/sxyazi/yazi/pull/3222 for more details.",
timeout = 15,
level = "warn",
}
return require("mime.local"):fetch(job)
end
return { fetch = fetch }