A link's underline is masking underscore symbols.
Requesting a setting to change link decoration (or to have a link's underline removed while hovering over it).
Having links highlighted in some other way would offer a better overview of link's that have one or more underscores in them.
Happened in a JavaScript file: request.get('http://localhost:11590/user/_design/user', next);
@bgashler1 Do you know of some CSS trickery that might help here?
@alexandrudima there is no way to modify the offset of text-decoration: underline property, which is frustrating. But what I and others will sometimes do is use text-decoration: none and then apply a border-bottom: 1px solid white like so,

which won't mask those underscores.
Using borders causes more issues than originally thought, therefore rolling back to using text-decoration:underline.
We need to think of a different approach.
Could you at least just put in an option to turn it off completely while you are coming up with the different approach?
A future solution would be to use text-underline-position: under.
There is also text-decoration-skip: ink which look good but is probably less readable.
examples: https://codepen.io/zombectro/pen/VWOPpp
It is available without flags or prefixes in Chrome 59, which will be included in the next electron release.
https://github.com/electron/electron/pull/9946
Since a couple of milestones, there is "editor.links" which can be configured to false to completely disable link detection.
Let's continue tracking in #3476
Most helpful comment
Could you at least just put in an option to turn it off completely while you are coming up with the different approach?