File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments