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 {
317317
318318 const config = vscode . workspace . getConfiguration ( CONFIG_SECTION , uri ) ;
319319
320- const mode = config . get < string > ( "languageServer.mode" , "stdio " ) ;
320+ const mode = config . get < string > ( "languageServer.mode" , "pipe " ) ;
321321
322322 const serverOptions : ServerOptions | undefined =
323323 mode === "tcp" ? this . getServerOptionsTCP ( workspaceFolder ) : await this . getServerOptions ( workspaceFolder , mode ) ;
@@ -372,6 +372,7 @@ export class LanguageClientsManager {
372372 } ,
373373 } ,
374374 diagnosticCollectionName : "robotcode" ,
375+ // TODO: how we can start a language client on workspace level, not on folder level
375376 workspaceFolder,
376377 outputChannel,
377378 markdown : {
You can’t perform that action at this time.
0 commit comments