jesseduffield.lazygit/.vscode/launch.json
2022-05-17 21:52:14 +10:00

15 lines
337 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "debug lazygit",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "main.go",
"args": ["--debug"],
"console": "integratedTerminal" // <-- you need this to actually see the lazygit UI in a window while debugging
}
]
}