Skip to content

Commit

Permalink
chore: Update .vscode/tasks.json to use shared panel for task present…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
PlugFox committed May 10, 2024
1 parent 61bcb58 commit f31f0f1
Showing 1 changed file with 28 additions and 4 deletions.
32 changes: 28 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "dedicated"
"panel": "shared"
}
},
{
Expand All @@ -159,7 +159,7 @@
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "dedicated"
"panel": "shared"
}
},
{
Expand All @@ -186,7 +186,7 @@
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "dedicated"
"panel": "shared"
}
},
{
Expand All @@ -210,7 +210,7 @@
"problemMatcher": [],
"presentation": {
"reveal": "never",
"panel": "dedicated"
"panel": "shared"
}
},
{
Expand All @@ -232,6 +232,30 @@
"problemMatcher": [],
"presentation": {
"reveal": "never",
"panel": "shared"
}
},
{
"label": "go:run:echo",
"detail": "Start echo server with Go",
"options": {
"cwd": "${workspaceFolder}/tool/echo",
"env": {}
},
"type": "shell",
"command": "go",
"args": [
"run",
"echo.go"
],
"isBackground": true,
"group": {
"kind": "none",
"isDefault": true
},
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
}
Expand Down

0 comments on commit f31f0f1

Please sign in to comment.