nixos-config/modules/home/yazi/plugins/smart-paste.yazi/main.lua

14 lines
261 B
Lua
Raw Normal View History

2025-02-06 18:58:39 -05:00
--- @sync entry
return {
entry = function()
local h = cx.active.current.hovered
if h and h.cha.is_dir then
ya.manager_emit("enter", {})
ya.manager_emit("paste", {})
ya.manager_emit("leave", {})
else
ya.manager_emit("paste", {})
end
end,
}