linux - pid_t doesnt highlight by default in VIM -
All data types such as int, long, char are automatically highlighted as soon as I type them in VIM. But, there are some exceptions such as pid_t, mode_t ..
How are they highlighted by default?
You can add them to syntax / c.vim
, so they Delivered syntax / c.vim
to complement. For example: See the section of the user manual:
syn keyword cType pid_t mode_t
Comments
Post a Comment