Skip to content

Add tooltip to regex matches #279#386

Closed
qistoph wants to merge 3 commits intogchq:masterfrom
qistoph:RegexTooltip
Closed

Add tooltip to regex matches #279#386
qistoph wants to merge 3 commits intogchq:masterfrom
qistoph:RegexTooltip

Conversation

@qistoph
Copy link
Copy Markdown
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
Copy Markdown
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
Copy Markdown
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