Skip to content

Instantly share code, notes, and snippets.

@skywind3000
Created May 9, 2019 01:49
Show Gist options
  • Save skywind3000/5e07e1fc48c6fc49edeb3a9d13d13bf4 to your computer and use it in GitHub Desktop.
Save skywind3000/5e07e1fc48c6fc49edeb3a9d13d13bf4 to your computer and use it in GitHub Desktop.
[vscode] task tricks #new #terminal
// open new terminal
// https://stackoverflow.com/questions/47993595/launch-vscode-task-in-external-terminal-via-tasks-2-0-0
{
"label": "%name%",
"type": "shell",
"command": "Start-Process -FilePath \"%path to bat%\"",
"presentation": {
"reveal": "never"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment