We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3cce5f commit e05df93Copy full SHA for e05df93
editors/code/src/config.ts
@@ -191,7 +191,7 @@ export class Config {
191
const VarRegex = new RegExp(/\$\{(.+?)\}/g);
192
193
export function substituteVSCodeVariableInString(val: string): string {
194
- return val.replaceAll(VarRegex, (substring: string, varName) => {
+ return val.replace(VarRegex, (substring: string, varName) => {
195
if (typeof varName === "string") {
196
return computeVscodeVar(varName) || substring;
197
} else {
0 commit comments