yazi/yazi-plugin/preset/plugins/session.lua
2025-04-21 19:28:52 +08:00

7 lines
194 B
Lua

local function setup(_, opts)
if opts.sync_yanked then
ps.sub_remote("@yank", function(body) ya.emit("update_yanked", { cut = body.cut, urls = body }) end)
end
end
return { setup = setup }