Add snippets

This commit is contained in:
Antoine Vaure 2024-08-12 16:52:09 +02:00
parent e462372892
commit 6c3ead7d65
2 changed files with 18 additions and 2 deletions

View file

@ -1,4 +1,4 @@
snippet launch template of dap_config.json
snippet dap_cpp template of dap_config.json
{
"version": "0.2.0",
"configurations": [
@ -7,7 +7,21 @@ snippet launch template of dap_config.json
"request": "launch",
"name": "Launch",
"program": "./${exe}",
"args": [],
"args": []
}
]
}
snippet dap_python template of dap_config.json
{
"version": "0.2.0",
"configurations": [
{
"type": "debugpy",
"request": "launch",
"name": "Launch",
"program": "./${file}",
"args": []
}
]
}