Add ClearBreakpoints API

Add a test which actually triggers the mappings and fires up vimspector
with the cpptools debugger.
This commit is contained in:
Ben Jackson 2019-04-28 09:35:59 +01:00
commit 470c64603a
11 changed files with 155 additions and 19 deletions

View file

@ -0,0 +1,18 @@
{
"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}"
}
}
}
}