Without any specific regularity my vim displays underlines on the place of tabs (see below).
Sometimes it also happens to the text: I type and it’s underlined.
What could be a reason?

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is likely due to the fact that you are editing an html file and the text near the underline is inside of an
<a>tag.To disable this you can add
let html_no_rendering=1to your~/.vimrc. This setting will, however, also disable bold and italic styling for html files.If you wish to only disable the underlining, see
:help html.vim. There it gives you instructions on what highlight groups you need to redefine withoutunderline.