summaryrefslogtreecommitdiffstats
path: root/after/syntax/c.vim
diff options
context:
space:
mode:
Diffstat (limited to 'after/syntax/c.vim')
-rw-r--r--after/syntax/c.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/after/syntax/c.vim b/after/syntax/c.vim
index 821350c3..80501e19 100644
--- a/after/syntax/c.vim
+++ b/after/syntax/c.vim
@@ -7,7 +7,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'cpp-modern') ==
" http://www.vim.org/scripts/script.php?script_id=3064
" Maintainer: bfrg <bfrg@users.noreply.github.com>
" Website: https://github.com/bfrg/vim-cpp-modern
-" Last Change: Oct 22, 2020
+" Last Change: Oct 23, 2020
"
" Extended C syntax highlighting including highlighting of user-defined
" functions.
@@ -63,6 +63,7 @@ hi def link cAnsiName Identifier
if get(g:, 'cpp_simple_highlight', 0)
hi link cStorageClass Statement
hi link cStructure Statement
+ hi link cTypedef Statement
hi link cLabel Statement
endif