From 0c1119ac7581e99d970b194d969b8776255cff44 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Wed, 24 Jan 2024 10:01:27 +0100 Subject: [PATCH] vim-patch:ca0e9823a1df runtime(c): Highlight user defined functions closes: vim/vim#13763 https://github.com/vim/vim/commit/ca0e9823a1dfd71a17c0f08cb7973d413bf98999 Co-authored-by: Luca Saccarola --- runtime/doc/syntax.txt | 2 ++ runtime/syntax/c.vim | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index 9164171152..afcf568a81 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -989,6 +989,8 @@ Variable Highlight ~ *c_no_c99* don't highlight C99 standard items *c_no_c11* don't highlight C11 standard items *c_no_bsd* don't highlight BSD specific types +*c_functions* highlight function calls and definitions +*c_function_pointers* highlight function pointers definitions When 'foldmethod' is set to "syntax" then `/* */` comments and { } blocks will become a fold. If you don't want comments to become a fold use: > diff --git a/runtime/syntax/c.vim b/runtime/syntax/c.vim index 5ed8fdc847..a593bd26c2 100644 --- a/runtime/syntax/c.vim +++ b/runtime/syntax/c.vim @@ -444,6 +444,14 @@ syn match cUserLabel display "\I\i*" contained syn match cBitField display "^\s*\zs\I\i*\s*:\s*[1-9]"me=e-1 contains=cType syn match cBitField display ";\s*\zs\I\i*\s*:\s*[1-9]"me=e-1 contains=cType +if exists("c_functions") + syn match cFunction "\<\h\w*\ze\_s*(" + endif + +if exists("c_function_pointers") + syn match cFunctionPointer "\%((\s*\*\s*\)\@<=\h\w*\ze\s*)\_s*(.*)" +endif + if exists("c_minlines") let b:c_minlines = c_minlines else @@ -513,6 +521,8 @@ hi def link cCppOutSkip cCppOutIf2 hi def link cCppInElse2 cCppOutIf2 hi def link cCppOutIf2 cCppOut hi def link cCppOut Comment +hi def link cFunction Function +hi def link cFunctionPointer Function let b:current_syntax = "c"