mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
8 lines
191 B
Lua
8 lines
191 B
Lua
return {
|
|
entry = function(_, args)
|
|
local current = cx.active.current
|
|
local new = (current.cursor + args[1]) % #current.files
|
|
ya.manager_emit("arrow", { new - current.cursor })
|
|
end,
|
|
}
|