From c193a9169634a2c16ee9f18863eb013499b70b98 Mon Sep 17 00:00:00 2001 From: Giovanni de la Rosa Date: Fri, 5 Jun 2020 12:36:50 -0400 Subject: [PATCH 1/2] feat: add project settings and marker manager to global show list --- definitions/actions.lua | 2 ++ definitions/global.lua | 2 ++ 2 files changed, 4 insertions(+) diff --git a/definitions/actions.lua b/definitions/actions.lua index 2adc9ba3..618e448f 100644 --- a/definitions/actions.lua +++ b/definitions/actions.lua @@ -278,6 +278,7 @@ return { PrevTransientInItem = {"SaveItemSelection", "SelectItemsUnderEditCursor", "MoveEditCursorToPrevTransientInSelectedItems", "RestoreItemSelection"}, ProjectEnd = custom.move.projectEnd, ProjectStart = custom.move.projectStart, + ProjectSettings = 40021, ProjectTimeline = custom.select.innerProjectTimeline, Quantize = {40009, midiCommand=true}, RecallMark = {lib.marks.recall, registerAction=true}, @@ -407,6 +408,7 @@ return { ShowActionList = 40605, ShowEnvelopeModulationLastTouchedFx = 41143, ShowReaperKeysHelp = {metaCommand=true}, + ToggleRegionMarkerManager = 40326, ShowRoutingMatrix = 40251, ShowTrackFreezeDetails = 41654, ShowTrackManager = 40906, diff --git a/definitions/global.lua b/definitions/global.lua index 2df5dab5..d0850c30 100644 --- a/definitions/global.lua +++ b/definitions/global.lua @@ -214,6 +214,8 @@ return { ["w"] = "ShowWiringDiagram", ["t"] = "ShowTrackManager", ["p"] = "Preferences", + ["k"] = "ToggleRegionMarkerManager", + ["j"] = "ProjectSettings", }}, ["f"] = {"+fx", { ["x"] = "FxCloseAll", From 14ae40911617679bcb155ff5ba0df7132467c9d4 Mon Sep 17 00:00:00 2001 From: Giovanni de la Rosa Date: Sat, 6 Jun 2020 21:39:45 -0400 Subject: [PATCH 2/2] feat: Verbalize project settings --- definitions/actions.lua | 2 +- definitions/global.lua | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/definitions/actions.lua b/definitions/actions.lua index 618e448f..b72a69cf 100644 --- a/definitions/actions.lua +++ b/definitions/actions.lua @@ -278,7 +278,7 @@ return { PrevTransientInItem = {"SaveItemSelection", "SelectItemsUnderEditCursor", "MoveEditCursorToPrevTransientInSelectedItems", "RestoreItemSelection"}, ProjectEnd = custom.move.projectEnd, ProjectStart = custom.move.projectStart, - ProjectSettings = 40021, + ShowProjectSettings = 40021, ProjectTimeline = custom.select.innerProjectTimeline, Quantize = {40009, midiCommand=true}, RecallMark = {lib.marks.recall, registerAction=true}, diff --git a/definitions/global.lua b/definitions/global.lua index d0850c30..e344618c 100644 --- a/definitions/global.lua +++ b/definitions/global.lua @@ -215,7 +215,6 @@ return { ["t"] = "ShowTrackManager", ["p"] = "Preferences", ["k"] = "ToggleRegionMarkerManager", - ["j"] = "ProjectSettings", }}, ["f"] = {"+fx", { ["x"] = "FxCloseAll", @@ -245,7 +244,7 @@ return { ["r"] = "RenderProject", }}, ["n"] = "NextTab", - ["p"] = "PrevTab", + ["p"] = "ShowProjectSettings", ["N"] = "PrevTab", ["s"] = "SaveProject", ["o"] = "OpenProject",