8 lines
277 B
Lua
8 lines
277 B
Lua
-- MIDI Grid: next note at this pitch (pass-through when grid mode is off)
|
|||
|
|
local dir = ({ reaper.get_action_context() })[2]:match("@?(.*[\\/])")
|
||
|
|
local G = dofile(dir .. "midigrid_lib.lua")
|
||
|
|
|
||
|
|
if not G.isActive() then G.passThrough("_OSARA_NEXTCHORD") return end
|
||
|
|
|
||
|
|
G.runRowJump(1)
|