When I type a HTML element a, there is always a underline. I want to stop this, but do not know how?
I'm talking about the vim syntax highlight.
|
feedback
|
|
Make a copy of the mkdir -p ~/.vim/syntax cp /usr/share/vim/vim73/syntax/html.vim ~/.vim/syntax/ # "vim72" for version 7.2 vim ~/.vim/syntax/html.vim Find this line: (should be around line 248)
HtmlHiLink htmlLink Underlined
To disable styling completely, comment out the line (prefix with a To change appearance, replace the | |||||
feedback
|
|
If you are talking about html then you just need a CSS change called text-decoration. | |||
|
feedback
|
|
It is due to function of < span style='text-decoration:underline'> YOUR TEXT < /span>and its result will be YOUR TEXT underlined. So put none at place of underline. | |||
|
feedback
|
vim's syntax highlighting displays the anchor text (content of the<a>tag) in underline. – grawity Sep 30 '10 at 19:24