tags:

views:

200

answers:

1

How may I highlight in Vim with the :match command the text that does not matches with the given pattern?

So, I want the opposite of:

:match myGroup /foo/
+2  A: 

Well, you could do something like:

:match myBaseHighlight /foo/
:2match myGroup /./

where myBaseHighlight is defined to be your default appearance -- white on black, or whatever. :match will override :2match, so everything other than /foo/ will get the myGroup highlight.

chaos