c.vim (302B)
1 syn match cCustomParen "?=(" contains=cParen,cCppParen 2 syn match cCustomFunc "\<\h\+\w*\s*(\@=" contains=cCustomParen 3 syn match cCustomScope "::" 4 syn match cCustomClass "\<\h\+\w*\s*::" contains=cCustomScope 5 6 hi def link cCustomFunc Function 7 hi def link cCustomClass Function