Skip to content

Commit

Permalink
fix: change 'insert' operators to be binded to 'a' so to not clash wi…
Browse files Browse the repository at this point in the history
…th '+inner'
  • Loading branch information
gwatcha committed May 30, 2020
1 parent aa8f3d2 commit fb420ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion definitions/global.lua
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ return {
["c"] = "ViewFxChainMaster",
}},
["e"] = { "+envelope", {
["s"] = "ToggleShowAllEnvelopeGlobal",
["t"] = "ToggleShowAllEnvelopeGlobal",
}},
["t"] = { "+track", {
["a"] = "ClearAllRecordArm",
Expand Down
4 changes: 2 additions & 2 deletions definitions/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ return {
["<M-d>"] = "CutEnvelopePoints",
["<M-y>"] = "CopyEnvelopePoints",
["<C-D>"] = "DeleteTimeline",
["<M-i>"] = "InsertAutomationItem",
["g"] = "GlueItems",
["%"] = "HealSplits",
[">"] = "GrowItemRight",
Expand All @@ -75,7 +74,8 @@ return {
["p"] = "FitByPadding",
["s"] = "FitByStretching",
}},
["i"] = "InsertOrExtendMidiItem",
["a"] = "InsertOrExtendMidiItem",
["<M-a>"] = "InsertAutomationItem",
},
timeline_selector = {
["s"] = "SelectedItems",
Expand Down
2 changes: 1 addition & 1 deletion definitions/midi.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ return {
["d"] = "CutNotes",
["y"] = "CopyNotes",
["c"] = "FitNotes",
["i"] = "InsertNote",
["a"] = "InsertNote",
["g"] = "JoinNotes",
["s"] = "SelectNotes",
["z"] = "MidiZoomTimeSelection",
Expand Down

0 comments on commit fb420ba

Please sign in to comment.