We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2aec4e commit a972a92Copy full SHA for a972a92
.vscode/launch.json
@@ -4,16 +4,25 @@
4
{
5
"type": "kotlin",
6
"request": "launch",
7
- "name": "Kotlin Launch",
+ "name": "Launch KLS",
8
"projectRoot": "${workspaceFolder}/server",
9
"mainClass": "org.javacs.kt.MainKt"
10
},
11
+ {
12
+ "type": "kotlin",
13
+ "name": "Attach running KLS",
14
+ "request": "attach",
15
+ "hostName": "localhost",
16
+ "projectRoot": "${workspaceFolder}/server",
17
+ "port": 5005,
18
+ "timeout": 30000
19
+ },
20
21
"type": "java",
- "name": "Attach Kotlin Language Server",
22
+ "name": "Attach running KLS with Java Debugger",
23
"request": "attach",
24
"hostName": "localhost",
- "port": 8000
25
+ "port": 5005
26
27
28
0 commit comments