Add a test which actually triggers the mappings and fires up vimspector with the cpptools debugger.
18 lines
413 B
JSON
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}"
|
|
}
|
|
}
|
|
}
|
|
}
|