-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Add tooltip to regex matches #279 #386
Conversation
Tooltip shows offset and matched groups
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this PR @qistoph . Consider the use of string literals when building these templates - they're more readable than string concatenation.
if (m.length > 1) { | ||
title += "Groups: "; | ||
for (let n = 1; n < m.length; ++n) { | ||
title += n + ": " + m[n] + " "; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using template strings here would be more clear.
Is there a reason you used
instead of \n
?
Tooltip shows offset and matched groups as proposed in #279.