nixos-config/modules/home/yazi/plugins/arrow.yazi/main.lua

9 lines
210 B
Lua
Raw Normal View History

2025-02-12 16:15:41 -05:00
--- @sync entry
return {
entry = function(_, job)
local current = cx.active.current
local new = (current.cursor + job.args[1]) % #current.files
ya.manager_emit("arrow", { new - current.cursor })
end,
}