From b1024baf1222dcfe8a5eb705c18939961745e4c6 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Thu, 27 Jul 2017 21:17:14 +0530 Subject: [PATCH] Fix #31557 --- src/vs/workbench/services/configuration/node/configuration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/configuration/node/configuration.ts b/src/vs/workbench/services/configuration/node/configuration.ts index 20a19dbbb8d..73daaedc5c5 100644 --- a/src/vs/workbench/services/configuration/node/configuration.ts +++ b/src/vs/workbench/services/configuration/node/configuration.ts @@ -467,7 +467,7 @@ export class WorkspaceServiceImpl extends WorkspaceService { description: nls.localize('workspaceConfig.folders.description', "List of folders to be loaded in the workspace. Must be a file path. e.g. `file:///root/folderA`"), items: { type: 'string', - pattern: '^file://' + pattern: '^file:\/\/[^/]*\/' } }, 'settings': { -- GitLab