-
Notifications
You must be signed in to change notification settings - Fork 12.6k
New issue
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
ECMA 2018 regex support #24531
Comments
Not sure what is the details of the request here. TypeScript does not do any processing or checking on regular expressions, and they are all deferred to the host. so See #21290 for related discussion |
I've asked for this on VSCode repo and they told me to ask here. So you're saying that extensions in vscode can use lookbehind already? |
so you want ti use lookbehind in VSCode regexp search box? or in your own .js code? |
I tried to use lookbehind with https://github.com/DomiR/vscode-regreplace and it didn't work |
I think this is an issue that should go back to VSCode then. TypeScript drives the language service for JS and TS, which is not what we are talking about here. |
We use ripgrep and seems no: BurntSushi/ripgrep#188 |
Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed. |
Search Terms
ECMA 2018
lookbehind
regex
Suggestion
Support ECMA 2018 javascript regex
Use Cases
In order to have lookbehind (
(?<=)
and(?<!)
) supportChecklist
My suggestion meets these guidelines:
The text was updated successfully, but these errors were encountered: