1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/.vscode/launch.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2022-05-17 13:38:37 +02:00
{
"version": "0.2.0",
"configurations": [
{
2022-05-17 14:14:24 +02:00
"name": "Debug Lazygit",
2022-05-17 13:38:37 +02:00
"type": "go",
"request": "launch",
"mode": "auto",
"program": "main.go",
2023-09-09 13:42:27 +02:00
"args": [
"--debug",
"--use-config-file=${workspaceFolder}/.vscode/debugger_config.yml"
],
"hideSystemGoroutines": true,
2022-05-17 14:14:24 +02:00
"console": "integratedTerminal",
},
{
"name": "Tail Lazygit logs",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "main.go",
2023-09-09 13:42:27 +02:00
"args": [
"--logs",
"--use-config-file=${workspaceFolder}/.vscode/debugger_config.yml"
],
2022-05-17 14:14:24 +02:00
"console": "integratedTerminal",
2023-09-09 13:42:27 +02:00
},
{
"name": "Attach to a running Lazygit",
"type": "go",
"request": "attach",
"mode": "local",
"processId": "lazygit",
"hideSystemGoroutines": true,
"console": "integratedTerminal",
},
{
// To use this, first start an integration test with the "cli" runner and
// use the -debug option; e.g.
// $ make integration-test-cli -- -debug tag/reset.go
"name": "Attach to integration test runner",
"type": "go",
"request": "attach",
"mode": "local",
"processId": "test_lazygit",
"hideSystemGoroutines": true,
"console": "integratedTerminal",
},
2022-05-17 14:14:24 +02:00
],
"compounds": [
{
"name": "Run with logs",
2023-09-09 13:42:27 +02:00
"configurations": [
"Tail Lazygit logs",
"Debug Lazygit"
],
2022-05-17 14:14:24 +02:00
"stopAll": true
2022-05-17 13:38:37 +02:00
}
]
}