-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimspector.json
38 lines (38 loc) · 915 Bytes
/
.vimspector.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"configurations": {
"launch": {
"adapter": "CodeLLDB",
"variables": {
"rustc_commit": {
"shell": [
"bash",
"-c",
"rustc -Vv | grep -Poi 'commit-hash: \\K(.*)'"
]
},
"rust_std": {
"shell": [ "rustc", "--print", "sysroot" ]
},
"test_exe": {
"shell": [
"bash",
"-c",
"cargo test --no-run --message-format=json -q | grep -Poi 'executable\":\"\\K([^\"]*)(?=\")'"
]
}
},
"configuration": {
"sourceMap#json": "{\"/rustc/${rustc_commit}/\" : \"${rust_std}/lib/rustlib/src/rust/\"}",
"request": "launch",
"program": "${test_exe}"
},
"args": [ "*${args}" ],
"breakpoints": {
"exception": {
"cpp_throw": "",
"cpp_catch": ""
}
}
}
}
}