forked from korcankaraokcu/PINCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimspector.json
36 lines (36 loc) · 910 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
{
"configurations": {
"Debug PINCE": {
"adapter": "debugpy",
"default": true,
"variables": {
"Python": {
"shell": "/bin/sh -c 'if [ -z \"${dollar}VIRTUAL_ENV\" ]; then echo $$(which python3); else echo \"${dollar}VIRTUAL_ENV/bin/python\"; fi'"
}
},
"filetypes": [ "python" ],
"configuration": {
"name": "Debug PINCE",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}",
"python": "$Python",
"stopOnEntry": false,
"justMyCode": false,
"sudo": true,
"console": "integratedTerminal",
"program": "${workspaceFolder}/PINCE.py",
"env": {
"PATH": "${PATH}"
}
},
"breakpoints": {
"exception": {
"uncaught": "Y",
"raised": "N",
"userUnhandled": "N"
}
}
}
}
}