oh-my-posh/.vscode/launch.json

115 lines
2.6 KiB
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Prompt",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}/src",
2022-01-09 11:24:47 -08:00
"args": [
2022-01-31 04:33:36 -08:00
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json",
"--shell=pwsh",
2022-02-12 09:40:02 -08:00
"--terminal-width=200",
2022-01-09 11:24:47 -08:00
]
},
2021-06-05 07:14:44 -07:00
{
"name": "Debug Tooltip",
2021-06-05 07:14:44 -07:00
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}/src",
2022-01-09 11:24:47 -08:00
"args": [
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json",
"--command=git",
"--shell=pwsh"
]
2021-06-05 07:14:44 -07:00
},
{
"name": "Debug Transient",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}/src",
"args": [
2022-01-31 04:33:36 -08:00
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json",
"--shell=pwsh",
"--print-transient"
]
},
{
"name": "Launch tests",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${workspaceRoot}/src",
2022-01-09 11:24:47 -08:00
"args": [
"--test.v"
]
},
{
"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"
]
},
{
"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"
]
},
{
"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"
]
},
2022-01-31 04:33:36 -08:00
{
"name": "Migrate config",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}/src",
"args": [
"--config=${workspaceRoot}/themes/jandedobbeleer.omp.json",
"--migrate"
]
},
{
"type": "node",
"request": "launch",
"name": "Theme export",
"cwd": "${workspaceFolder}/docs",
"program": "${workspaceRoot}/docs/export_themes.js",
"console": "integratedTerminal"
2022-01-09 11:24:47 -08:00
},
{
"name": "Docs API",
"type": "node",
"request": "attach",
"port": 9229,
"preDebugTask": "func: host start"
2020-12-28 05:32:04 -08:00
}
]
}