Skip to content

Commit

Permalink
Premiere pro shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
thecarlo committed Jun 15, 2024
1 parent ae2e5f7 commit 8bb2d9e
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 37 deletions.
29 changes: 29 additions & 0 deletions public/extra_descriptions/premiere_pro.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<link rel="stylesheet" href="../../vendor/css/bootstrap.min.css"/>

<p style="margin-top: 20px; font-weight: bold">
Scroll the timeline with mouse button 3
</p>

<table class="table">
<tr>
<td>Mouse button 3</td>
<td>
Hold in button 3 to scroll the timeline horizontally. This automatically selects the hand tool. When you release button 3, it goes back to the selection tool.
</td>
</tr>
</table>

<p style="margin-top: 20px; font-weight: bold">
Faster editing with the mouse
</p>

<table class="table">
<tr>
<td>Button 1 (left-click)</td>
<td>Makes a cut on the timeline</td>
</tr>
<tr>
<td>Button 2 (right-click)</td>
<td>Ripple edit to the previous cut on the timeline</td>
</tr>
</table>
3 changes: 2 additions & 1 deletion public/groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,8 @@
"extra_description_path": "extra_descriptions/vs_code.html"
},
{
"path": "json/adobe_premiere_pro_scroll_timeline_mouse_button_3.json"
"path": "json/premiere_pro.json",
"extra_description_path": "extra_descriptions/premiere_pro.html"
},
{
"path": "json/slack_left_option_search.json"
Expand Down
36 changes: 0 additions & 36 deletions public/json/adobe_premiere_pro_scroll_timeline_mouse_button_3.json

This file was deleted.

90 changes: 90 additions & 0 deletions public/json/premiere_pro.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
{
"title": "Adobe Premiere Pro",
"maintainers": ["thecarlo"],
"rules": [
{
"description": "Premiere Pro: scroll timeline with mouse button 3",
"manipulators": [
{
"type": "basic",
"from": {
"pointing_button": "button3"
},
"to": [
{
"key_code": "h"
},
{
"pointing_button": "button1"
}
],
"to_after_key_up": [
{
"key_code": "v"
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": ["^com\\.adobe\\.PremierePro.23$", "^com\\.adobe\\.PremierePro.24$"]
}
]
}
]
},
{
"description": "Premiere Pro: left shift + mouse button 1 → cut",
"manipulators": [
{
"type": "basic",
"from": {
"pointing_button": "button1",
"modifiers": {
"mandatory": ["left_shift"],
"optional": []
}
},
"to": [
{
"key_code": "k",
"modifiers": ["left_command"]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": ["^com\\.adobe\\.PremierePro.24$"]
}
]
}
]
},
{
"description": "Premiere Pro: mouse button 2 → ripple trim to previous edit playhead",
"manipulators": [
{
"type": "basic",
"from": {
"pointing_button": "button2",
"modifiers": {
"mandatory": [],
"optional": []
}
},
"to": [
{
"key_code": "q",
"modifiers": []
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": ["^com\\.adobe\\.PremierePro.23$", "^com\\.adobe\\.PremierePro.24$"]
}
]
}
]
}
]
}

0 comments on commit 8bb2d9e

Please sign in to comment.