cpp.vim 324 B

12345678
  1. " Highlight Class and Function names
  2. syn match cCustomParen "(" contains=cParen,cCppParen
  3. syn match cCustomFunc "\w\+\s*(" contains=cCustomParen
  4. syn match cCustomScope "::"
  5. syn match cCustomClass "\w\+\s*::" contains=cCustomScope
  6. hi def link cCustomFunc Function
  7. hi def link cCustomClass Function