File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ export class LanguageClientsManager {
317
317
318
318
const config = vscode . workspace . getConfiguration ( CONFIG_SECTION , uri ) ;
319
319
320
- const mode = config . get < string > ( "languageServer.mode" , "stdio " ) ;
320
+ const mode = config . get < string > ( "languageServer.mode" , "pipe " ) ;
321
321
322
322
const serverOptions : ServerOptions | undefined =
323
323
mode === "tcp" ? this . getServerOptionsTCP ( workspaceFolder ) : await this . getServerOptions ( workspaceFolder , mode ) ;
@@ -372,6 +372,7 @@ export class LanguageClientsManager {
372
372
} ,
373
373
} ,
374
374
diagnosticCollectionName : "robotcode" ,
375
+ // TODO: how we can start a language client on workspace level, not on folder level
375
376
workspaceFolder,
376
377
outputChannel,
377
378
markdown : {
You can’t perform that action at this time.
0 commit comments