Skip to content

Commit fbc75f8

Browse files
authored
Merge pull request #356 from grgars/run-anything
Support Run Anything shortcut on double ctrl
2 parents 51da651 + 6fcc183 commit fbc75f8

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ ctrl+f9 | cmd+f9 | Make project (compile modifed and dependent) | ✅
119119
ctrl+shift+f9 | cmd+shift+f9 | Compile selected file, package or module | N/A
120120
alt+shift+f10 | ctrl+alt+r | Select configuration and run | ✅
121121
alt+shift+f9 | ctrl+alt+d | Select configuration and debug | ✅
122+
ctrl ctrl | ctrl ctrl | Run Anything | ✅
122123
shift+f10 | ctrl+r | Run | ✅
123124
shift+f9 | ctrl+d | Debug | ✅
124125
ctrl+shift+f10 | ctrl+shift+r | Run context configuration from editor | N/A

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -725,6 +725,13 @@
725725
"command": "workbench.view.debug",
726726
"intellij": "Select configuration and debug"
727727
},
728+
{
729+
"key": "ctrl ctrl",
730+
"mac": "ctrl ctrl",
731+
"command": "workbench.action.tasks.runTask",
732+
"when": "taskCommandsRegistered && !terminalFocus",
733+
"intellij": "Run Anything"
734+
},
728735
{
729736
"key": "shift+f10",
730737
"mac": "ctrl+r",

src/package-with-comment.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,13 @@
921921
"command": "workbench.view.debug",
922922
"intellij": "Select configuration and debug"
923923
},
924+
{
925+
"key": "ctrl ctrl",
926+
"mac": "ctrl ctrl",
927+
"command": "workbench.action.tasks.runTask",
928+
"when": "taskCommandsRegistered && !terminalFocus",
929+
"intellij": "Run Anything"
930+
},
924931
{
925932
"key": "shift+f10",
926933
"mac": "ctrl+r",

0 commit comments

Comments
 (0)