summaryrefslogtreecommitdiff
path: root/mac/.config/yazi/plugins.bak/smart-paste.yazi/main.lua
blob: 0837a4b293683b8459564977ada21dc4635ef4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- @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,
}