Created
December 25, 2018 02:18
-
-
Save jaybill/a106b8a4418f9c1f82cbdd7e22d6b1ff to your computer and use it in GitHub Desktop.
vs code keybindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "f12", | |
"command": "workbench.action.tasks.runTask", | |
"args": "build" | |
}, | |
{ | |
"key": "f11", | |
"command": "workbench.action.tasks.runTask", | |
"args": "run" | |
}, | |
{ | |
"key": "f10", | |
"command": "workbench.action.tasks.runTask", | |
"args": "test" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment