nvim/snippets/json.snippets
2025-01-04 17:38:48 +01:00

29 lines
516 B
Text

snippet dap_cpp template of dap_config.json
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"cwd":"\${workspaceFolder}",
"program": "./${exe}",
"args": []
}
]
}
snippet dap_python template of dap_config.json
{
"version": "0.2.0",
"configurations": [
{
"type": "debugpy",
"request": "launch",
"name": "Launch",
"cwd":"\${workspaceFolder}",
"program": "./${file}",
"args": []
}
]
}