add cwd to snippets for DAP

This commit is contained in:
Antoine Vaure 2025-01-04 17:38:48 +01:00
parent 533d663e87
commit ba3bb69890

View file

@ -6,6 +6,7 @@ snippet dap_cpp template of dap_config.json
"type": "lldb",
"request": "launch",
"name": "Launch",
"cwd":"\${workspaceFolder}",
"program": "./${exe}",
"args": []
}
@ -20,6 +21,7 @@ snippet dap_python template of dap_config.json
"type": "debugpy",
"request": "launch",
"name": "Launch",
"cwd":"\${workspaceFolder}",
"program": "./${file}",
"args": []
}