vi 突然显示空格的颜色

:set
--- 选项 ---
backspace=2 filetype=sh hlsearch syntax=sh viminfo='20,"50
cscopetag helplang=cn modified ttyfast t_Sb=^[[4%dm
cscopeverbose history=50 ruler ttymouse=xterm t_Sf=^[[3%dm
cscopeprg=/usr/bin/cscope
formatoptions=tcql

这个配置没有显示颜色

:set
--- Options ---
backspace=2 history=50 ttyfast

这个配置没有显示颜色

:set
--- Options ---
backspace=2 hlsearch ttyfast viminfo='20,"50 t_Sf=^[[3%dm
history=50 ruler ttymouse=xterm t_Sb=^[[4%dm
formatoptions=tcql
这个配置原来的空格显示黄色的背景色,特别难看。

后面用set nohls

果然空格就没有背景色了。

hlsearch 是高亮选择搜索的关键字。

原来我此前搜索替换了空格,所以就把所有空格染色了。

而set nohls,则以后的搜索都不会高亮所有搜索的关键字。所以空格也不会有颜色了。

你可能感兴趣的:(vi)