8000 Sync upstream · reaalkhalil/vim-cpp@03c5d58 · GitHub
[go: up one dir, main page]

Skip to content

Commit 03c5d58

Browse filesBrowse files
committed
Sync upstream
1 parent 089d5d8 commit 03c5d58

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

syntax/c.vim

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim syntax file
22
" Language: C
33
" Maintainer: Bram Moolenaar <Bram@vim.org>
4-
" Last Change: 2016 Feb 08
4+
" Last Change: 2016 Apr 10
55

66
" Quit when a (custom) syntax file was already loaded
77
if exists("b:current_syntax")
@@ -248,6 +248,10 @@ if !exists("c_no_c99") " ISO C99
248248
syn keyword cType _Bool bool _Complex complex _Imaginary imaginary
249249
syn keyword cType int8_t int16_t int32_t int64_t
250250
syn keyword cType uint8_t uint16_t uint32_t uint64_t
251+
if !exists("c_no_bsd")
252+
" These are BSD specific.
253+
syn keyword cType u_int8_t u_int16_t u_int32_t u_int64_t
254+
endif
251255
syn keyword cType int_least8_t int_least16_t int_least32_t int_least64_t
252256
syn keyword cType uint_least8_t uint_least16_t uint_least32_t uint_least64_t
253257
syn keyword cType int_fast8_t int_fast16_t int_fast32_t int_fast64_t

0 commit comments

Comments
 (0)
0