2026-08-14 19:57:55 +02:00
|
|
|
--[[
|
2026-08-14 20:04:20 +02:00
|
|
|
MIDI Grid: play from the start of the bar the cursor is in, and keep going.
|
2026-08-14 19:57:55 +02:00
|
|
|
|
|
|
|
|
Deliberately works whether or not grid mode is on -- it is a listening aid,
|
|
|
|
|
not an editing action, and it is just as useful while navigating with OSARA
|
|
|
|
|
normally. Stop with Space as usual.
|
|
|
|
|
]]
|
|
|
|
|
local dir = ({ reaper.get_action_context() })[2]:match("@?(.*[\\/])")
|
|
|
|
|
local G = dofile(dir .. "midigrid_lib.lua")
|
|
|
|
|
|
2026-08-14 20:04:20 +02:00
|
|
|
local bar = G.playFromBar(false)
|
2026-08-14 19:57:55 +02:00
|
|
|
G.say("Playing from bar " .. bar)
|