From 9fe3b36bdae52dabecc3989161162fc6d2a3dccb Mon Sep 17 00:00:00 2001 From: Lucas Spits Date: Mon, 11 Mar 2019 21:22:54 +0100 Subject: Applied code style of ``npm run fix`` --- editors/code/src/server.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/editors/code/src/server.ts b/editors/code/src/server.ts index b3a874b38..f319f148a 100644 --- a/editors/code/src/server.ts +++ b/editors/code/src/server.ts @@ -12,19 +12,17 @@ export class Server { public static start( notificationHandlers: Iterable<[string, lc.GenericNotificationHandler]> ) { - // '.' Is the fallback if no folder is open // TODO?: Workspace folders support Uri's (eg: file://test.txt). It might be a good idea to test if the uri points to a file. let folder: string = '.'; if (workspace.workspaceFolders !== undefined) { + folder = workspace.workspaceFolders[0].uri.fsPath.toString(); - folder = workspace - .workspaceFolders[0].uri.fsPath - .toString(); - if (workspace.workspaceFolders.length > 1) { // Tell the user that we do not support multi-root workspaces yet - window.showWarningMessage('Multi-root workspaces are not currently supported'); + window.showWarningMessage( + 'Multi-root workspaces are not currently supported' + ); } } -- cgit v1.2.3