1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 01:53:22 -07:00
rc/vim/after/syntax/c.vim

7 lines
197 B
VimL
Raw Normal View History

2013-06-28 05:22:14 -07:00
syn keyword cType uchar ushort uint ulong
2016-09-01 00:44:03 -07:00
syn keyword cType u8 u16 u32 u64
syn keyword cType s8 s16 s32 s64
2016-09-01 23:24:45 -07:00
syn keyword cType i8 i16 i32 i64
syn keyword cType f32 f64
2019-07-13 08:28:33 -07:00
syn keyword cConditional elif