Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
gwatcha committed May 30, 2020
2 parents 22ae308 + 68d93f9 commit fd21a0c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
31 changes: 16 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,7 @@
# Table of Contents

1. [Reaper-Keys](#org3c1380e)
1. [Pros](#orgbaedca2)
2. [Features](#orga772014)
1. [Bind key sequences](#orgba6e7da)
2. [Compose actions](#org43150a4)
3. [Multi-modal](#org67ec5f9)
4. [Macros](#org00bfab6)
3. [Installation](#orgc80dfd9)
4. [Help](#org08b4794)
5. [Configuration](#org1ecda81)

<a id="org3c1380e"></a>

# Reaper-Keys

![img](img/reaper-keys.png)

Reaper-Keys is an extension for the [REAPER DAW](https://www.reaper.fm/), that provides a new action
mapping system based on key sequences instead of key chords. The system is
similar to [Vim](https://en.wikipedia.org/wiki/Vim_%28text_editor%29), a modal text editor, and by default comes with vim-like bindings.
Expand All @@ -31,6 +18,20 @@ similar to [Vim](https://en.wikipedia.org/wiki/Vim_%28text_editor%29), a modal t

<a id="orga772014"></a>

# Table of Contents

1. [Features](#orga772014)
1. [Bind key sequences](#orgba6e7da)
2. [Compose actions](#org43150a4)
3. [Multi-modal](#org67ec5f9)
4. [Macros](#org00bfab6)
2. [Installation](#orgc80dfd9)
3. [Help](#org08b4794)
4. [Configuration](#org1ecda81)

<a id="org3c1380e"></a>


## Features

<a id="orgba6e7da"></a>
Expand Down
2 changes: 1 addition & 1 deletion definitions/global.lua
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,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 @@ -76,7 +75,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 fd21a0c

Please sign in to comment.