Skip to content

Commit 885667f

Browse files
committed
AG-47108 Update task configuration to hide terminal output for task termination
Squashed commit of the following: commit ca5b733 Author: scripthunter7 <d.tota@adguard.com> Date: Wed Dec 10 09:12:40 2025 +0100 Update task configuration to hide terminal output for task termination - Add single quotes around ${input:terminateAllTasks} in echo command to avoid parsing issues with zsh - Add presentation configuration to hide terminal (reveal: never, close: true) - Fix trailing comma in presentation object
1 parent 994ebc7 commit 885667f

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.vscode/tasks.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,13 @@
8585
// https://github.com/microsoft/vscode/issues/90786#issuecomment-587415345
8686
{
8787
"label": "Terminate All Tasks",
88-
"command": "echo ${input:terminateAllTasks}",
88+
"command": "echo '${input:terminateAllTasks}'",
8989
"type": "shell",
90-
"problemMatcher": []
90+
"problemMatcher": [],
91+
"presentation": {
92+
"reveal": "never",
93+
"close": true
94+
},
9195
}
9296
],
9397
"inputs": [

0 commit comments

Comments
 (0)