Reputation: 1828
When using Vim is there a way that :grep
or :vimgrep
will color the patterns returned to the buffer?
Upvotes: 10
Views: 4039
Reputation: 5104
Two ways:
/
you can use :set hls
.:match Search /pattern/
. This will hightlight everything that matches pattern
.Upvotes: 0
Reputation: 16313
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.
Upvotes: 4
Reputation: 3161
You can use the Unix grep:
:!grep --color pattern %
There may be other solutions using internal grep/vimgrep but this one works for me.
Upvotes: 2