2

Possible Duplicate:
VIM: Don't underline leading whitespace in HTML links

Some of my lines in vim are getting weird horizontal lines in the leading whitespace. I don't know why. Maybe a plugin I have installed?

Here's a picture

Only some lines get them. I've tried closing and opening the file.

Does anyone know how to turn this off?

Community
  • 1
  • 1
Kris Harper
  • 5,672
  • 8
  • 51
  • 96

1 Answers1

4

Those lines are part of the underline syntax highlighting of hyperlinks. Notice that they occur inside <a> tags. Some colorschemes won't underline hyperlinked content inside <a>, but if you wanted to continue using the same colorscheme you would need to modify or override the HtmlHiLink directives in the html.vim syntax files.

Michael Berkowski
  • 267,341
  • 46
  • 444
  • 390