From b955b58eee047560f59e7a49818934ffac03e7d6 Mon Sep 17 00:00:00 2001 From: Nick Rayburn Date: Tue, 1 Sep 2020 15:40:02 -0500 Subject: [PATCH] Add dirSep variable launch.json --- .../services/configurationResolver/common/variableResolver.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/vs/workbench/services/configurationResolver/common/variableResolver.ts b/src/vs/workbench/services/configurationResolver/common/variableResolver.ts index 2ad97f9bc3336..7fed78e87e004 100644 --- a/src/vs/workbench/services/configurationResolver/common/variableResolver.ts +++ b/src/vs/workbench/services/configurationResolver/common/variableResolver.ts @@ -307,6 +307,9 @@ export class AbstractVariableResolverService implements IConfigurationResolverSe } return match; + case 'dirSep': + return paths.sep; + default: try { return this.resolveFromMap(match, variable, commandValueMapping, undefined);