include plugins

This commit is contained in:
Simon Belmont 2025-05-08 20:48:25 -04:00
parent ae61234858
commit cd81d7b2b4
21 changed files with 1201 additions and 0 deletions

View file

@ -0,0 +1,13 @@
--- @sync entry
local function entry(_, job)
local cur = cx.active.current
for _ = #cx.tabs, job.args[1] do
ya.mgr_emit("tab_create", { cur.cwd })
if cur.hovered then
ya.mgr_emit("reveal", { cur.hovered.url })
end
end
ya.mgr_emit("tab_switch", { job.args[1] })
end
return { entry = entry }