From cabf4b2997fddf7eabff83d4d22ffa72381545b1 Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 31 Oct 2017 08:46:05 +0100 Subject: [PATCH] fixes #37191 --- .../configurationResolver/node/configurationResolverService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/configurationResolver/node/configurationResolverService.ts b/src/vs/workbench/services/configurationResolver/node/configurationResolverService.ts index c43eb38ceb8..d9df4dda92f 100644 --- a/src/vs/workbench/services/configurationResolver/node/configurationResolverService.ts +++ b/src/vs/workbench/services/configurationResolver/node/configurationResolverService.ts @@ -166,7 +166,7 @@ export class ConfigurationResolverService implements IConfigurationResolverServi private resolveConfigVariable(root: IWorkspaceFolder, value: string, originalValue: string): string { const replacer = (match: string, name: string) => { - let config = this.configurationService.getConfiguration(); + let config = this.configurationService.getConfiguration({ resource: root.uri }); let newValue: any; try { const keys: string[] = name.split('.');