vimspector/tests/testdata/cpp/simple/.vimspector.json
Ben Jackson 470c64603a Add ClearBreakpoints API
Add a test which actually triggers the mappings and fires up vimspector
with the cpptools debugger.
2019-04-28 10:51:15 +01:00

18 lines
413 B
JSON

{
"configurations": {
"cpptools-run": {
"adapter": "vscode-cpptools",
"configuration": {
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/simple",
"args": [],
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"stopAtEntry": true,
"MImode": "${VIMSPECTOR_MIMODE}"
}
}
}
}