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
This works:
extractEmailsFromString(text, options = { isWrappedLessThanGreaterThan: false, }) { if (options.isWrappedLessThanGreaterThan) { return text.match(/(<[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9_-]+>)/gi); } return text.match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9_-]+)/gi); }
But this doesn't work:
I know ctags works on a line by line basis, so is this just not possible to implement? Thanks for making this project!
The text was updated successfully, but these errors were encountered:
Yeah, in cases where there is no function or : or = I need to be sure that this is a definition and not a call and for that I must find the ) {.
function
:
=
) {
I don't think I've ever tried to use \n in this context but I can see this becoming very complicated very quickly. I will see what I can do.
\n
Sorry, something went wrong.
No branches or pull requests
This works:
But this doesn't work:
I know ctags works on a line by line basis, so is this just not possible to implement? Thanks for making this project!
The text was updated successfully, but these errors were encountered: