我的.vimrc
中有以下四种突出显示(每种都显示不同的颜色):
/
搜索匹配)突出显示的优先级似乎与我上面列出的一模一样。例如。增量搜索着色将覆盖任何其他匹配颜色(如果存在于同一字符中)。
我想优先hlsearch
秒,以便它覆盖match
和2match
颜色(如果存在于同一个字符中)。
有没有办法实现这个目标?
作为参考,这些是我.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()'
[...]
答案 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)