Skip to content

Commit

Permalink
chore: launch.json args syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lnu authored and JanDeDobbeleer committed Dec 29, 2020
1 parent d005568 commit 36e69a1
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .vscode/launch.json
Expand Up @@ -10,15 +10,15 @@
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}/src",
"args": ["-config=${workspaceRoot}/themes/jandedobbeleer.omp.json"]
"args": ["--config=${workspaceRoot}/themes/jandedobbeleer.omp.json"]
},
{
"name": "Launch tests",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${workspaceRoot}/src",
"args": ["-test.v"]
"args": ["--test.v"]
},
{
"name": "Print debug",
Expand All @@ -28,7 +28,7 @@
"program": "${workspaceRoot}/src",
"args": [
"--debug",
"-config=${workspaceRoot}/themes/jandedobbeleer.omp.json"
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json"
]
},
{
Expand All @@ -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"
]
}
]
}

0 comments on commit 36e69a1

Please sign in to comment.