Skip to content
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

Closed
wants to merge 3 commits into from
Closed

Conversation

qistoph
Copy link
Contributor

@qistoph qistoph commented Oct 11, 2018

Tooltip shows offset and matched groups as proposed in #279.

Tooltip shows offset and matched groups
Copy link
Member

@d98762625 d98762625 left a 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] + "&#10;";
Copy link
Member

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 &#10; instead of \n?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants