gitui/.vscode/launch.json

13 lines
299 B
JSON
Raw Normal View History

2020-05-11 15:45:37 +03:00
{
"version": "0.2.0",
"configurations": [
{
"name": "(OSX) Launch",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/gitui",
"args": [],
"cwd": "${workspaceRoot}",
}
]
}