Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不小心用 Janus 在 MacVim 中“搜索”(:/u<Enter>),现在我无法让突出显示消失。我真的不需要每个u突出显示。
:/u<Enter>
u
我真的很喜欢这个功能,我只需要在完成后关闭突出显示。
要在搜索后关闭突出显示,请使用:noh. 下次您发出搜索时,突出显示将自动再次打开。
:noh
我已经在正常模式下映射了 RETURN 键来关闭搜索突出显示,如下所示:
nnoremap <silent> <CR> :noh<CR>
所以在我完成搜索后,我回到正常模式,点击 RETURN 然后没有更多亮点。
解决方法:搜索不存在的字符串,不会突出显示任何内容。
来自 Janus 的文档:
<leader>hs切换高亮搜索
<leader>hs
来自https://github.com/carlhuda/janus