8 lines
293 B
Lua
8 lines
293 B
Lua
-- MIDI Grid: next note below in this cell (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_LOWERNOTEINCHORD") return end
|
||
|
|
|
||
|
|
G.runColumnJump(-1)
|