in vscode and sublime, turns out the way to keep the regex group value is using `$`
so replace ^([A-Za-z]+)=
with $1:
would give the correct key value.
in vscode and sublime, turns out the way to keep the regex group value is using `$`
so replace ^([A-Za-z]+)=
with $1:
would give the correct key value.