Skip to content

Instantly share code, notes, and snippets.

@tonysneed
Created July 14, 2017 14:57
Show Gist options
  • Select an option

  • Save tonysneed/fc81abb1061357902171c9e7551675d9 to your computer and use it in GitHub Desktop.

Select an option

Save tonysneed/fc81abb1061357902171c9e7551675d9 to your computer and use it in GitHub Desktop.
Angular CLI VS Code Keyboard Shortcuts
// 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