2020-12-27 08:53:58 -08:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "Launch Package",
|
|
|
|
"type": "go",
|
|
|
|
"request": "launch",
|
|
|
|
"mode": "debug",
|
|
|
|
"program": "${workspaceRoot}/src",
|
2021-05-22 07:50:34 -07:00
|
|
|
"args": ["--config=${workspaceRoot}/themes/jandedobbeleer.omp.json", "--shell=pwsh"]
|
2020-12-27 08:53:58 -08:00
|
|
|
},
|
2021-06-05 07:14:44 -07:00
|
|
|
{
|
|
|
|
"name": "Launch Tooltip",
|
|
|
|
"type": "go",
|
|
|
|
"request": "launch",
|
|
|
|
"mode": "debug",
|
|
|
|
"program": "${workspaceRoot}/src",
|
2021-06-15 10:20:13 -07:00
|
|
|
"args": ["--config=${workspaceRoot}/themes/jandedobbeleer.omp.json", "--command=git", "--shell=pwsh"]
|
2021-06-05 07:14:44 -07:00
|
|
|
},
|
2020-12-27 08:53:58 -08:00
|
|
|
{
|
|
|
|
"name": "Launch tests",
|
|
|
|
"type": "go",
|
|
|
|
"request": "launch",
|
|
|
|
"mode": "test",
|
|
|
|
"program": "${workspaceRoot}/src",
|
2020-12-28 05:32:04 -08:00
|
|
|
"args": ["--test.v"]
|
2020-12-27 08:53:58 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Print debug",
|
|
|
|
"type": "go",
|
|
|
|
"request": "launch",
|
|
|
|
"mode": "debug",
|
|
|
|
"program": "${workspaceRoot}/src",
|
|
|
|
"args": [
|
|
|
|
"--debug",
|
2020-12-28 05:32:04 -08:00
|
|
|
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json"
|
2020-12-27 08:53:58 -08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Print init pwsh",
|
|
|
|
"type": "go",
|
|
|
|
"request": "launch",
|
|
|
|
"mode": "debug",
|
|
|
|
"program": "${workspaceRoot}/src",
|
2020-12-28 05:32:04 -08:00
|
|
|
"args": [
|
|
|
|
"--print-init",
|
|
|
|
"--shell=pwsh",
|
|
|
|
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json"
|
|
|
|
]
|
2021-04-04 11:28:41 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Export PNG",
|
|
|
|
"type": "go",
|
|
|
|
"request": "launch",
|
|
|
|
"mode": "debug",
|
|
|
|
"program": "${workspaceRoot}/src",
|
|
|
|
"args": [
|
|
|
|
"--export-png",
|
|
|
|
"--shell=shell",
|
|
|
|
"--rprompt-offset=40",
|
|
|
|
"--cursor-padding=15",
|
|
|
|
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Theme export",
|
|
|
|
"cwd": "${workspaceFolder}/docs",
|
|
|
|
"program": "${workspaceRoot}/docs/export_themes.js",
|
|
|
|
"console": "integratedTerminal"
|
2020-12-28 05:32:04 -08:00
|
|
|
}
|
2020-12-27 08:53:58 -08:00
|
|
|
]
|
|
|
|
}
|