Skip to content

Commit 67fc00b

Browse files
committed
Add statusbar option to hide for specific tasks in tasks.json
1 parent 9180c98 commit 67fc00b

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.vscode/tasks.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,10 @@
174174
"dev,doc,test",
175175
],
176176
"options": {
177-
"cwd": "${workspaceFolder}"
177+
"cwd": "${workspaceFolder}",
178+
"statusbar": {
179+
"hide": true
180+
}
178181
},
179182
"group": {
180183
"kind": "build",
@@ -283,6 +286,9 @@
283286
"env": {
284287
"UNATTENDED": "1",
285288
"PYTHON": "${command:python.interpreterPath}",
289+
},
290+
"statusbar": {
291+
"hide": true
286292
}
287293
},
288294
"group": {
@@ -336,6 +342,9 @@
336342
"env": {
337343
"PYTHON": "${command:python.interpreterPath}",
338344
"UNATTENDED": "1",
345+
},
346+
"statusbar": {
347+
"hide": true
339348
}
340349
},
341350
"args": [
@@ -369,6 +378,9 @@
369378
"env": {
370379
"PYTHON": "${command:python.interpreterPath}",
371380
"UNATTENDED": "1",
381+
},
382+
"statusbar": {
383+
"hide": true
372384
}
373385
},
374386
"args": [

0 commit comments

Comments
 (0)