如何在vim中突出显示ex模式输出的匹配文本:syntax命令呢?

时间:2017-03-30 09:16:48

标签: vim

我不是在谈论语法,突出显示正常模式文本。 我想要做的是突出显示ex模式命令的输出文本,例如。

:g/re/p   

命令将打印出匹配re的行,但如何突出显示屏幕上的输出文本。我注意到了

:syntax

命令在屏幕上输出带有高亮显示的文本,这就是我想要的。

1 个答案:

答案 0 :(得分:0)

只需设置hlsearch

即可
:set hlsearch

或只是

:set hls

来自:help hls

'hlsearch' 'hls'    boolean (default off)  
                    global  
                    {not in Vi}  
                    {not available when compiled without the  
                    |+extra_search| feature}  
    When there is a previous search pattern, highlight all its matches.  
    The type of highlighting used can be set with the 'l' occasion in  

的         '突出'选项。这使用"搜索"按组分突出显示组         默认。请注意,只有匹配的文本会突出显示,任何
 偏移         不适用。