blob: 9d2cad15b40cc2901302cf27fc3244ee4570115d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Snippets to create vimspector.json
snippet /^new/ "New Configurations" r
{
"configurations": {
${1:<new config here>}
}
}
endsnippet
snippet godebug "Golang Debug"
"${1:run}": {
"adapter": "delve",
"configuration": {
"request": "launch",
"program": "${2:${workspaceFolder}}",
"mode": "debug",
"args": [
"${3:*${CommandLineArgs}}"
]
}
}
endsnippet
|