When using VIM is there a way that :grep or :vimgrep will color the patterns returned to the buffer?
Thanks!
When using VIM is there a way that :grep or :vimgrep will color the patterns returned to the buffer?
Thanks!
You can use the Unix grep:
:!grep --color pattern %
There may be other solutions using internal grep/vimgrep but this one works for me.
If you search for the pattern after you've :vimgrep'd it, Vim will highlight it. Just edit the :vimgrep pattern files
into :g/pattern/
.
For a richer solution, try this script.
Two ways:
/
you can use :set hls
.:match Search /pattern/
. This will hightlight everything that matches pattern
.