We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for this extension. How can I make the regex case insensitive? I've tried the following but can't get it to work:
regex": "^\\w*PROD$", "flags": "i",
"regex": "^(?i)\\w*prod$", "regex": "^\\w*(?i)prod$", (Those two actually cause the whole extension to stop working)
"regex": "^(?i)\\w*prod$",
"regex": "^\\w*(?i)prod$",
and a whole lot of others around adding /i at the end and attempting to escape that in a number of ways.
The only way I can get it to work is "regex": "^(\\w*[pP][rR][oO][dD])$", which I really don't like!
"regex": "^(\\w*[pP][rR][oO][dD])$",
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for this extension. How can I make the regex case insensitive? I've tried the following but can't get it to work:
"regex": "^(?i)\\w*prod$",
"regex": "^\\w*(?i)prod$",
(Those two actually cause the whole extension to stop working)
and a whole lot of others around adding /i at the end and attempting to escape that in a number of ways.
The only way I can get it to work is
"regex": "^(\\w*[pP][rR][oO][dD])$",
which I really don't like!
The text was updated successfully, but these errors were encountered: