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.
我正在尝试一些命令来显示和替换空格字符,但现在每次打开 VIM 时,它都会突出显示文件中的所有 's' 字符。如何禁用它?
:set nohls
将关闭搜索突出显示。搜索模式保持不变,并且下一个搜索模式不会被突出显示(除非您:set hls重新打开它)。
:set hls
:let @/ = ''
将清空搜索模式,因此不会突出显示任何内容。另一个搜索将设置搜索模式并按预期突出显示。
而且,正如另一个答案所说,
:noh
暂时关闭hls- 至少在下一次搜索之前。
hls
这可能是残留搜索突出显示。将其关闭,直到使用 进行下一次搜索:noh。