Skip to content

Commit e21ed06

Browse files
committed
#602 socket server for jedi intellisense
1 parent 2e50f0f commit e21ed06

2 files changed

Lines changed: 606 additions & 0 deletions

File tree

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22
{
33
"version": "0.1.0",
44
"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+
{
524
"name": "Launch Extension",
625
"type": "extensionHost",
726
"request": "launch",

0 commit comments

Comments
 (0)