Files
plugins/smart-paste.yazi/main.lua
2025-06-18 13:20:49 +08:00

15 lines
248 B
Lua

--- @since 25.5.31
--- @sync entry
return {
entry = function()
local h = cx.active.current.hovered
if h and h.cha.is_dir then
ya.emit("enter", {})
ya.emit("paste", {})
ya.emit("leave", {})
else
ya.emit("paste", {})
end
end,
}