Skip to content

Commit

Permalink
adds global mode l/r by grid value.
Browse files Browse the repository at this point in the history
adds all set grid value actions
  • Loading branch information
molleweide committed May 27, 2020
1 parent 0fc38d8 commit 4bd22b7
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions definitions/global.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ return {
["<M-l>"] = "Right10Pix",
["<M-H>"] = "Left40Pix",
["<M-L>"] = "Right40Pix",
["h"] = "PrevBeat",
["l"] = "NextBeat",
["h"] = "MoveEditCursorToLeftGridDivision",
["l"] = "MoveEditCursorToRightGridDivision",
["H"] = "PrevMeasure",
["L"] = "NextMeasure",
["<C-h>"] = "Prev4Beats",
Expand Down Expand Up @@ -253,6 +253,34 @@ return {
["d"] = "CloseProject",
["x"] = "CleanProjectDirectory",
}},
["G"] = {"+grid",{
["z"] = "GridSetTo1by1", -- low left hand
["x"] = "GridSetTo1by2",
["c"] = "GridSetTo1by3",
["v"] = "GridSetTo1by4",
["b"] = "GridSetTo1by5",

["a"] = "GridSetTo1by6", -- mid left hand
["s"] = "GridSetTo1by7",
["d"] = "GridSetTo1by8",
["f"] = "GridSetTo1by9",
["g"] = "GridSetTo1by10",

["q"] = "GridSetTo1by12", -- upper left hand
["w"] = "GridSetTo1by16",
["e"] = "GridSetTo1by18",
["r"] = "GridSetTo1by24",
["t"] = "GridSetTo1by32",

["n"] = "GridSetTo1by48", -- lower right
["m"] = "GridSetTo1by64",
[","] = "GridSetTo1by128",
["."] = "GridSetTo2by1",
["/"] = "GridSetTo2by3",

["h"] = "GridSetTo3by1", -- mid right
["j"] = "GridSetTo4by1",
}},
}},
},
}

0 comments on commit 4bd22b7

Please sign in to comment.