How to color my vimgrep result patterns

后端 未结 3 1838
慢半拍i
慢半拍i 2021-02-14 18:39

When using Vim is there a way that :grep or :vimgrep will color the patterns returned to the buffer?

3条回答
  •  天命终不由人
    2021-02-14 19:21

    You can use the Unix grep:

    :!grep --color pattern %
    

    There may be other solutions using internal grep/vimgrep but this one works for me.

提交回复
热议问题