We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e50f0f commit e21ed06Copy full SHA for e21ed06
2 files changed
.vscode/launch.json
@@ -2,6 +2,25 @@
2
{
3
"version": "0.1.0",
4
"configurations": [{
5
+ "name": "CompletionServer.ppy",
6
+ "type": "python",
7
+ "request": "launch",
8
+ "stopOnEntry": true,
9
+ "pythonPath": "python",
10
+ "program": "${workspaceRoot}/pythonFiles/completionServer.py",
11
+ "cwd": "${workspaceRoot}",
12
+ "env": {},
13
+ "args": [
14
+ "123"
15
+ ],
16
+ "envFile": "${workspaceRoot}/.env",
17
+ "debugOptions": [
18
+ "WaitOnAbnormalExit",
19
+ "WaitOnNormalExit",
20
+ "RedirectOutput"
21
+ ]
22
+ },
23
+ {
24
"name": "Launch Extension",
25
"type": "extensionHost",
26
"request": "launch",
0 commit comments