Nikolai Weibull wrote: > match Error /\<Ni[^k]ol[^a][^i]\>/
But that will only matches entries that mispell all three letters. You probably want something like: match Error /\<Ni[^k]ol..\>/ match Error /\<Ni.ol[^a].\>/ match Error /\<Ni.ol.[^i]\>/ David Brown