mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 04:54:03 -08:00
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
|
{
|
||
|
// Use IntelliSense to learn about possible attributes.
|
||
|
// Hover to view descriptions of existing attributes.
|
||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Launch Package",
|
||
|
"type": "go",
|
||
|
"request": "launch",
|
||
|
"mode": "debug",
|
||
|
"program": "${workspaceRoot}/src",
|
||
|
"args": ["-config=${workspaceRoot}/themes/jandedobbeleer.omp.json"]
|
||
|
},
|
||
|
{
|
||
|
"name": "Launch tests",
|
||
|
"type": "go",
|
||
|
"request": "launch",
|
||
|
"mode": "test",
|
||
|
"program": "${workspaceRoot}/src",
|
||
|
"args": ["-test.v"]
|
||
|
},
|
||
|
{
|
||
|
"name": "Print debug",
|
||
|
"type": "go",
|
||
|
"request": "launch",
|
||
|
"mode": "debug",
|
||
|
"program": "${workspaceRoot}/src",
|
||
|
"args": [
|
||
|
"--debug",
|
||
|
"-config=${workspaceRoot}/themes/jandedobbeleer.omp.json"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "Print init pwsh",
|
||
|
"type": "go",
|
||
|
"request": "launch",
|
||
|
"mode": "debug",
|
||
|
"program": "${workspaceRoot}/src",
|
||
|
"args": ["--print-init","-shell=pwsh","-config=${workspaceRoot}/themes/jandedobbeleer.omp.json"]
|
||
|
},
|
||
|
]
|
||
|
}
|