aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/after/syntax/c.vim
blob: e9a795ce147165584dd3913c085ea090d7dcdfd3 (plain)
1
2
3
4
5
" Highlight Function names
syn match    cCustomParen    "(" contains=cParen
syn match    cCustomFunc     "\w\+\s*(" contains=cCustomParen

hi def link cCustomFunc  Function