Skip to content

Commit bca4a57

Browse files
committed
VSCode: added launch configurations
1 parent 37e2d1b commit bca4a57

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.vscode/launch.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"python": "${config:python.defaultInterpreterPath}",
1515
"justMyCode": true,
1616
"env": {
17-
// "DEBUG": "1",
1817
"QT_COLOR_MODE": "light",
1918
}
2019
},
@@ -27,14 +26,21 @@
2726
"envFile": "${workspaceFolder}/.env",
2827
"python": "${config:python.defaultInterpreterPath}",
2928
"justMyCode": false,
29+
},
30+
{
31+
"name": "Run current file (unattended)",
32+
"type": "python",
33+
"request": "launch",
34+
"program": "${file}",
35+
"console": "integratedTerminal",
36+
"envFile": "${workspaceFolder}/.env",
37+
"python": "${config:python.defaultInterpreterPath}",
38+
"justMyCode": false,
3039
"args": [
3140
"--unattended",
3241
],
3342
"env": {
3443
"GUIDATA_PARSE_ARGS": "1",
35-
// "DEBUG": "1",
36-
// "LANG": "fr",
37-
"QT_COLOR_MODE": "light",
3844
}
3945
},
4046
]

0 commit comments

Comments
 (0)