We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3bb827b + ca461a9 commit ce80ed1Copy full SHA for ce80ed1
.vscode/launch.json
@@ -16,7 +16,7 @@
16
"name": "Attach to Language-Server",
17
"address": "localhost",
18
"protocol": "inspector",
19
- "port": 6009,
+ "port": 6010,
20
"smartStep": true,
21
"sourceMaps": true,
22
},
src/workflow/languageServer.ts
@@ -9,7 +9,7 @@ let client: LanguageClient;
9
export async function initLanguageServer(context: vscode.ExtensionContext) {
10
const serverModule = context.asAbsolutePath(path.join("dist", "server-node.js"));
11
12
- const debugOptions = {execArgv: ["--nolazy", "--inspect=6009"]};
+ const debugOptions = {execArgv: ["--nolazy", "--inspect=6010"]};
13
14
const serverOptions: ServerOptions = {
15
run: {module: serverModule, transport: TransportKind.ipc},
0 commit comments