Add TODO to cpp syntax

This commit is contained in:
Kenneth Benzie 2020-10-26 13:33:14 +00:00
parent d063e60559
commit 6435ed4c4d

View File

@ -109,6 +109,7 @@ endif
if !exists('cpp_no_function') if !exists('cpp_no_function')
" Match function expressions: expr<T>() " Match function expressions: expr<T>()
" ^^^^ " ^^^^
" TODO: change .* to a not be greedy
syn match cppFunction '\h\w*\ze<.*>\s*(' display syn match cppFunction '\h\w*\ze<.*>\s*(' display
hi default link cppFunction Function hi default link cppFunction Function