In Visual Studio Code 1.18.1, I have a build task:
{
"version": "2.0.0",
"tasks": [
{
"label": "Build LedaAP",
"type": "shell",
"command": "c:/WindRiver/workbench-4/wrtool.bat -data c:/WindRiver/workspace_BR_SW_BFHW prj build LedaAP",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
}
}
}
The build output is in gcc style. Presently, all text is shown in black. How can I configure the terminal to show errors in red (or other highlight)?