mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 12:44:40 +00:00
Auto merge of #13448 - yotamofek:python-ext-polyfill-workaround, r=Veykril
Workaround the python vscode extension's polyfill Fixes #13442 `String.replaceAll` and `String.replace` behave the same when given a (/g-flagged) Regex, so fix is very simple.
This commit is contained in:
commit
7741e3dc73
@ -191,7 +191,7 @@ export class Config {
|
||||
const VarRegex = new RegExp(/\$\{(.+?)\}/g);
|
||||
|
||||
export function substituteVSCodeVariableInString(val: string): string {
|
||||
return val.replaceAll(VarRegex, (substring: string, varName) => {
|
||||
return val.replace(VarRegex, (substring: string, varName) => {
|
||||
if (typeof varName === "string") {
|
||||
return computeVscodeVar(varName) || substring;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user