I’m using the regex for find and replace and selecting a group so that I can set that as the var I want to capture and reuse in the replace. Below is a great example but there are many others. Currently this works no problem, however the highlighting leaves something to be desired. I wish that the group I’m capturing was highlighted in a different color or outlined so that it would be more clear what I’m selecting.
Find: website: http://website.com
Replace: <a href="http://website.com">http://website.com</a>
The regex I would use
Find: website: (.*)
Replace: <a href="($1)">($1)</a>
Not sure if there is a plugin anyone knows of or if there would be a way to accomplish this without changing the engine. I checked in the inspector but it seems as if the highlight is a single piece and not pulling the group out in any way.