Hello, i want to ask how i can remove thees underlines ?
How to remove thees
You can disable these indent guide lines by disabling the setting mentioned in this FAQ post:
It’s at Settings > Editor > Show Indent Guide
.
Oh sorry my fault! I read your post too quickly - is that blue underline only under “header” or do you see it with other tags?
Didn’t really notice before but it looks like the matching tag is underlined on hover which seems like what you’re seeing - so you’d like to disable this behavior?
I poked around a bit more and see this functionality comes from the bracket-matcher package /cc https://github.com/atom/bracket-matcher/pull/36 but there’s no package setting to disable this behavior.
We can use the approach described here to tweak the styles though:
http://flight-manual.atom.io/using-atom/sections/basic-customization/#style-tweaks
After playing with devtools, I ended up with this bit of CSS that I added to my styles.less
file and it seems like it worked:
atom-text-editor .bracket-matcher .region {
border: none;
}
Can you give that a try?