comparison runtime/syntax/c.vim @ 8869:b73f9ed65072

commit https://github.com/vim/vim/commit/939a1abe935a539f2d4c90a56cb0682cbaf3bbb0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 10 01:31:25 2016 +0200 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Sun, 10 Apr 2016 01:45:05 +0200
parents abd64cf67bcf
children 47f17f66da3d
comparison
equal deleted inserted replaced
8868:0fcc63fd49e6 8869:b73f9ed65072
1 " Vim syntax file 1 " Vim syntax file
2 " Language: C 2 " Language: C
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2016 Feb 08 4 " Last Change: 2016 Apr 07
5 5
6 " Quit when a (custom) syntax file was already loaded 6 " Quit when a (custom) syntax file was already loaded
7 if exists("b:current_syntax") 7 if exists("b:current_syntax")
8 finish 8 finish
9 endif 9 endif
246 endif 246 endif
247 if !exists("c_no_c99") " ISO C99 247 if !exists("c_no_c99") " ISO C99
248 syn keyword cType _Bool bool _Complex complex _Imaginary imaginary 248 syn keyword cType _Bool bool _Complex complex _Imaginary imaginary
249 syn keyword cType int8_t int16_t int32_t int64_t 249 syn keyword cType int8_t int16_t int32_t int64_t
250 syn keyword cType uint8_t uint16_t uint32_t uint64_t 250 syn keyword cType uint8_t uint16_t uint32_t uint64_t
251 " These are BSD specific?
252 syn keyword cType u_int8_t u_int16_t u_int32_t u_int64_t
251 syn keyword cType int_least8_t int_least16_t int_least32_t int_least64_t 253 syn keyword cType int_least8_t int_least16_t int_least32_t int_least64_t
252 syn keyword cType uint_least8_t uint_least16_t uint_least32_t uint_least64_t 254 syn keyword cType uint_least8_t uint_least16_t uint_least32_t uint_least64_t
253 syn keyword cType int_fast8_t int_fast16_t int_fast32_t int_fast64_t 255 syn keyword cType int_fast8_t int_fast16_t int_fast32_t int_fast64_t
254 syn keyword cType uint_fast8_t uint_fast16_t uint_fast32_t uint_fast64_t 256 syn keyword cType uint_fast8_t uint_fast16_t uint_fast32_t uint_fast64_t
255 syn keyword cType intptr_t uintptr_t 257 syn keyword cType intptr_t uintptr_t