可能重复:
Why is vim drawing underlines on the place of tabs and how to avoid this?
在CentOS 5.x上的VIM 7.0中缩进PHP代码时,HTML链接会以下划线显示。这非常方便,但在某些地方我已经在该HTML中缩进了PHP代码,整个缩进标有下划线:
<li class="picture">
________________<a href="<?=$linkUrl?>">
____________________<img src="/<?=$img['source']?>" alt="Picture"/>
____________________<? if ($someCondition): ?><span class="info"><?=$img['info']?></span><? endif; ?>
________________</a>
</li>
有没有办法告诉语法高亮显示器忽略HTML链接中的行前导空格?
答案 0 :(得分:10)
我设法通过修改$VIMRUNTIME/syntax/html.vim
来实现这一目标。复制到~/.vim/syntax/html.vim
(.vim
在Windows上命名为vimfiles
,并替换原始语法定义
syn region htmlLink start="<a\>\_[^>]*\<href\>" end="</a>"me=e-4 contains=@Spell,htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,javaScript,@htmlPreproc
以下内容:
syn region htmlLink start="<a\>\_[^>]*\<href\>" end="</a>"me=e-4 keepend contains=@Spell,htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,htmlLinkText,javaScript,@htmlPreproc
syn match htmlLinkText contained contains=@Spell,htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,htmlLinkText,javaScript,@htmlPreproc "^\s*\zs.\{-}\ze\s*$"
syn match htmlLinkText contained contains=@Spell,htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,htmlLinkText,javaScript,@htmlPreproc "\S.\{-}\ze\s*$"
再往下,改变
HtmlHiLink htmlLink Underlined
到
HtmlHiLink htmlLinkText Underlined
瞧!基本上,这会引入另一个包含的语法组htmlLinkText
,它与前导空格和尾随空格不匹配,并将突出显示应用于此。
答案 1 :(得分:7)
你可以这样做:
:hi link htmlLink NONE