From 36e69a1f7eb4f005e67dacbb7db23dd059d3d3ef Mon Sep 17 00:00:00 2001 From: lnu Date: Mon, 28 Dec 2020 14:32:04 +0100 Subject: [PATCH] chore: launch.json args syntax --- .vscode/launch.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 68579ff05a66..4c18bbdcc9bc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,7 +10,7 @@ "request": "launch", "mode": "debug", "program": "${workspaceRoot}/src", - "args": ["-config=${workspaceRoot}/themes/jandedobbeleer.omp.json"] + "args": ["--config=${workspaceRoot}/themes/jandedobbeleer.omp.json"] }, { "name": "Launch tests", @@ -18,7 +18,7 @@ "request": "launch", "mode": "test", "program": "${workspaceRoot}/src", - "args": ["-test.v"] + "args": ["--test.v"] }, { "name": "Print debug", @@ -28,7 +28,7 @@ "program": "${workspaceRoot}/src", "args": [ "--debug", - "-config=${workspaceRoot}/themes/jandedobbeleer.omp.json" + "--config=${workspaceRoot}/themes/jandedobbeleer.omp.json" ] }, { @@ -37,7 +37,11 @@ "request": "launch", "mode": "debug", "program": "${workspaceRoot}/src", - "args": ["--print-init","-shell=pwsh","-config=${workspaceRoot}/themes/jandedobbeleer.omp.json"] - }, + "args": [ + "--print-init", + "--shell=pwsh", + "--config=${workspaceRoot}/themes/jandedobbeleer.omp.json" + ] + } ] }