diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-24 16:34:21 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-24 16:34:29 +0200 |
commit | 73245289847c4e806e9bc20b7382f2a46eb9337c (patch) | |
tree | e2539857fec2ca81c08c3f17073162fb92efb15c /after | |
parent | 0a2f2cc04d39f996d5afcdbc99f5b4190f094bbb (diff) | |
download | vim-polyglot-73245289847c4e806e9bc20b7382f2a46eb9337c.tar.gz vim-polyglot-73245289847c4e806e9bc20b7382f2a46eb9337c.zip |
Fix detecting shell filetypes, closes #603
Diffstat (limited to 'after')
-rw-r--r-- | after/syntax/c.vim | 3 |
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 |