nixos-config/modules/home/yazi/plugins/smart-paste.yazi/main.lua
2025-04-05 13:01:20 -04:00

13 lines
245 B
Lua

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