Skip to content

Commit ce80ed1

Browse files
authored
Merge pull request #19 from github/thyeggman/change-languageserver-port
Use port 6010
2 parents 3bb827b + ca461a9 commit ce80ed1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"name": "Attach to Language-Server",
1717
"address": "localhost",
1818
"protocol": "inspector",
19-
"port": 6009,
19+
"port": 6010,
2020
"smartStep": true,
2121
"sourceMaps": true,
2222
},

src/workflow/languageServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let client: LanguageClient;
99
export async function initLanguageServer(context: vscode.ExtensionContext) {
1010
const serverModule = context.asAbsolutePath(path.join("dist", "server-node.js"));
1111

12-
const debugOptions = {execArgv: ["--nolazy", "--inspect=6009"]};
12+
const debugOptions = {execArgv: ["--nolazy", "--inspect=6010"]};
1313

1414
const serverOptions: ServerOptions = {
1515
run: {module: serverModule, transport: TransportKind.ipc},

0 commit comments

Comments
 (0)