Skip to content

Instantly share code, notes, and snippets.

@daniel12fsp
Created December 4, 2018 15:41
Show Gist options
  • Save daniel12fsp/8031f1837aa09bd9b1764ab8832c0794 to your computer and use it in GitHub Desktop.
Save daniel12fsp/8031f1837aa09bd9b1764ab8832c0794 to your computer and use it in GitHub Desktop.
VS code bind shortcut =)
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "f12",
"command": "workbench.action.tasks.runTask",
"args" : "task-deploy"
}
]
{
"version": "2.0.0",
"tasks": [
{
"label": "task-deploy",
"type": "npm",
"script": "deploy",
"problemMatcher": [],
"presentation": {
"reveal": "silent",
"panel": "dedicated"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment