Files
midigrid/MidiGrid_ColumnUp.lua
T

8 lines
293 B
Lua
Raw Normal View History

-- MIDI Grid: next note above 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_HIGHERNOTEINCHORD") return end
G.runColumnJump(1)