Skip to content

Commit 46a3a5f

Browse files
committed
Update.
1 parent bdb5203 commit 46a3a5f

1 file changed

Lines changed: 56 additions & 0 deletions

File tree

python.sublime-project

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"folders":
3+
[
4+
{
5+
"path": ".",
6+
}
7+
],
8+
"debugger_configurations":
9+
[
10+
{
11+
"name": "Python Debugger: Attach remote debug.",
12+
"type": "python",
13+
"request": "attach",
14+
"connect": {
15+
"host": "localhost",
16+
"port": 5678
17+
},
18+
"justMyCode" : false,
19+
},
20+
{
21+
"name": "Python Debugger: WSL2 Attach remote debug.",
22+
"type": "python",
23+
"request": "attach",
24+
"connect": {
25+
// My WSL2 IP Adress
26+
"host": "",
27+
"port": 5678
28+
},
29+
"justMyCode" : false,
30+
},
31+
{
32+
"name" : "Python Debugger: Attach using process Id",
33+
"type" : "python",
34+
"request" : "attach",
35+
"selector": "source.python | text.html.python",
36+
"debugServer": 5678,
37+
// At startup, check.
38+
"processId": "",
39+
"pathMappings": [{
40+
"localRoot": "${workspaceFolder}",
41+
"remoteRoot": "."
42+
}],
43+
"justMyCode" : false,
44+
},
45+
{
46+
"name": "Python Debugger: Current File",
47+
"type": "sublime",
48+
"platform": "windows",
49+
"request": "launch",
50+
"selector": "source.python | text.html.python",
51+
"program": "\\${file}",
52+
"console": "integratedTerminal",
53+
"justMyCode" : false,
54+
},
55+
],
56+
}

0 commit comments

Comments
 (0)