Created
May 9, 2019 01:49
-
-
Save skywind3000/5e07e1fc48c6fc49edeb3a9d13d13bf4 to your computer and use it in GitHub Desktop.
[vscode] task tricks #new #terminal
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
// 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