mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-01-14 04:38:00 -08:00
chore: launch.json args syntax
This commit is contained in:
parent
d0055682ad
commit
36e69a1f7e
14
.vscode/launch.json
vendored
14
.vscode/launch.json
vendored
|
@ -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"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue