From d5ff0d8ea606b8c6a73fc8c8cf8b93534a934855 Mon Sep 17 00:00:00 2001 From: Azarakhsh Keipour Date: Mon, 6 Jan 2020 17:53:55 -0500 Subject: [PATCH] VSCode: Tasks formatted as the one on master now - The task for tilted hex has the same presentation and does not start gzclient now - The Gazebo Kill task does not kill the client anymore --- .vscode/tasks.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 656a3973fa..15573156fc 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -141,11 +141,15 @@ "PX4_SIM_SPEED_FACTOR": "1" } }, - "command": "gzserver --verbose ${workspaceRoot}/Tools/sitl_gazebo/worlds/hexa_x_tilt.world & gzclient", + "command": "gzserver --verbose ${workspaceRoot}/Tools/sitl_gazebo/worlds/hexa_x_tilt.world", "isBackground": true, "presentation": { - "reveal": "always", - "panel": "dedicated" + "echo": true, + "reveal": "never", + "focus": false, + "panel": "shared", + "showReuseMessage": false, + "clear": true }, "problemMatcher": [ { @@ -328,7 +332,7 @@ { "label": "gazebo kill", "type": "shell", - "command": "killall gzserver; killall gzclient", + "command": "killall gzserver", "presentation": { "echo": false, "reveal": "never",