Created
July 14, 2017 14:57
-
-
Save tonysneed/fc81abb1061357902171c9e7551675d9 to your computer and use it in GitHub Desktop.
Angular CLI VS Code Keyboard Shortcuts
This file contains hidden or 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 | |
| [ | |
| // End a running background task | |
| { | |
| "key": "shift+cmd+x", | |
| "command": "workbench.action.tasks.terminate" | |
| }, | |
| // Show Source Control | |
| { | |
| "key": "shift+cmd+g", | |
| "command": "workbench.view.scm" | |
| }, | |
| { | |
| "key": "ctrl+shift+g", | |
| "command": "-workbench.view.scm" | |
| }, | |
| // Lint | |
| { | |
| "key": "ctrl+shift+l", | |
| "command": "workbench.action.tasks.runTask", | |
| "args": "lint" | |
| }, | |
| // Tests | |
| { | |
| "key": "shift+cmd+t", | |
| "command": "workbench.action.tasks.test" | |
| }, | |
| // E2E Tests | |
| { | |
| "key": "ctrl+shift+e", | |
| "command": "workbench.action.tasks.runTask", | |
| "args": "e2e" | |
| }, | |
| // Serve app | |
| { | |
| "key": "shift+cmd+s", | |
| "command": "workbench.action.tasks.runTask", | |
| "args": "serve" | |
| }, | |
| // Open app | |
| { | |
| "key": "shift+cmd+o", | |
| "command": "workbench.action.tasks.runTask", | |
| "args": "open" | |
| }, | |
| // Go to symbol (remapped) | |
| { | |
| "key": "ctrl+shift+o", | |
| "command": "workbench.action.gotoSymbol" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment