27 lines
442 B
Text
27 lines
442 B
Text
snippet dap_cpp template of dap_config.json
|
|
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Launch",
|
|
"program": "./${exe}",
|
|
"args": []
|
|
}
|
|
]
|
|
}
|
|
|
|
snippet dap_python template of dap_config.json
|
|
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"name": "Launch",
|
|
"program": "./${file}",
|
|
"args": []
|
|
}
|
|
]
|
|
}
|