Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Run Anything shortcut on double ctrl #356

Merged
merged 1 commit into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ ctrl+f9 | cmd+f9 | Make project (compile modifed and dependent) | ✅
ctrl+shift+f9 | cmd+shift+f9 | Compile selected file, package or module | N/A
alt+shift+f10 | ctrl+alt+r | Select configuration and run | ✅
alt+shift+f9 | ctrl+alt+d | Select configuration and debug | ✅
ctrl ctrl | ctrl ctrl | Run Anything | ✅
shift+f10 | ctrl+r | Run | ✅
shift+f9 | ctrl+d | Debug | ✅
ctrl+shift+f10 | ctrl+shift+r | Run context configuration from editor | N/A
Expand Down
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,13 @@
"command": "workbench.view.debug",
"intellij": "Select configuration and debug"
},
{
"key": "ctrl ctrl",
"mac": "ctrl ctrl",
"command": "workbench.action.tasks.runTask",
"when": "taskCommandsRegistered && !terminalFocus",
"intellij": "Run Anything"
},
{
"key": "shift+f10",
"mac": "ctrl+r",
Expand Down
7 changes: 7 additions & 0 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,13 @@
"command": "workbench.view.debug",
"intellij": "Select configuration and debug"
},
{
"key": "ctrl ctrl",
"mac": "ctrl ctrl",
"command": "workbench.action.tasks.runTask",
"when": "taskCommandsRegistered && !terminalFocus",
"intellij": "Run Anything"
},
{
"key": "shift+f10",
"mac": "ctrl+r",
Expand Down