修改vim突出显示优先级

时间:2012-12-28 11:48:47

标签: vim

我的.vimrc中有以下四种突出显示(每种都显示不同的颜色):

  • incsearch(高亮搜索匹配)
  • 匹配(当前词,视觉工作室编辑)
  • 2匹配(行尾的尾随空格)
  • hlsearch(常规/搜索匹配)

突出显示的优先级似乎与我上面列出的一模一样。例如。增量搜索着色将覆盖任何其他匹配颜色(如果存在于同一字符中)。

我想优先hlsearch秒,以便它覆盖match2match颜色(如果存在于同一个字符中)。

有没有办法实现这个目标?

作为参考,这些是我.vimrc文件中的相关行:

[...]
set hlsearch
set incsearch
[...]
function Matches()
    highlight curword ctermbg=darkgrey cterm=bold gui=bold guibg=darkgrey
    silent! exe printf('match curword /\V\<%s\>/', escape(expand('<cword>'), '/\'))
    highlight eolspace ctermbg=red guibg=red
    2match eolspace /\s\+$/
endfunction
au CursorMoved * exe 'call Matches()'
[...]

1 个答案:

答案 0 :(得分:7)

您使用的所有内容的优先级是固定的;指定优先级的唯一方法是通过matchadd(),您可以将其用作:match:2match的替代品。由于hlsearch的优先级为零,因此您需要传递否定优先级,例如-1)。

例如,替换

:match Match /\<\w\{5}\>/

if exists(w:lastmatch)
    call matchdelete(w:lastmatch)
endif
let w:lastmatch = call matchadd('Match', '\<\w\{5}\>', -1)