vote up 2 vote down star
2

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

Thanks!

flag

76% accept rate

4 Answers

vote up 0 vote down check

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.

link|flag
vote up 0 vote down

You can use the Unix grep:

:!grep --color pattern %

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

link|flag
vote up 0 vote down

Maybe ack fits your bill?

link|flag
vote up 0 vote down

Two ways:

  • For normal search / you can use :set hls.
  • Or you can use :match Search /pattern/. This will hightlight everything that matches pattern.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.