ITNOA
Если вы используете task.json с версией 2
вам просто нужно написать presentation
свойство в tasks
как показано ниже:
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
полный пример как показано ниже
"tasks": [
{
"label": "example",
"type": "shell",
"command": "foo",
"args": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
}
]
для получения дополнительной информации вы можете прочитать vscode task.json help