我已经使用.vimrc来高亮显示与当前光标上的所有单词相匹配的单词
autocmd CursorMoved * silent! exe printf('match Search /\<%s\>/', expand('<cword>'))
但有时它有点烦人,所以我想映射一个键来打开或关闭它,例如<F10>
我该怎么做?
答案 0 :(得分:3)
清除自动命令并删除突出显示:
nmap <f8> :autocmd! CursorMoved<cr> :call clearmatches()<cr>
并使用其他键重新打开:
nmap <f9> :autocmd CursorMoved * silent! exe printf('match Search /\<%s\>/', expand('<cword>'))<cr>
答案 1 :(得分:1)
将以下内容放入.vimrc:
let g:toggleHighlight = 0
function! ToggleHighlight(...)
if a:0 == 1 "toggle behaviour
let g:toggleHighlight = 1 - g:toggleHighlight
endif
if g:toggleHighlight == 0 "normal action, do the hi
silent! exe printf('match Search /\<%s\>/', expand('<cword>'))
else
"do whatever you need to clear the matches
"or nothing at all, since you are not printing the matches
endif
endfunction
autocmd CursorMoved * call ToggleHighlight()
map <F8> :call ToggleHighlight(1)<CR>
这个想法是,如果你用一个参数调用该函数,它会改变行为以打印/不打印。 自动命令只使用最后一个设置,因为那里的函数没有参数调用。