c.vim 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. " Vim syntax file
  2. " Language: C
  3. " Maintainer: Bram Moolenaar <Bram@vim.org>
  4. " Last Change: 2008 Mar 19
  5. " Quit when a (custom) syntax file was already loaded
  6. if exists("b:current_syntax")
  7. finish
  8. endif
  9. " A bunch of useful C keywords
  10. syn keyword cStatement goto break return continue asm
  11. syn keyword cLabel case default
  12. syn keyword cConditional if else switch
  13. syn keyword cRepeat while for do
  14. syn keyword cTodo contained TODO FIXME XXX
  15. " cCommentGroup allows adding matches for special things in comments
  16. syn cluster cCommentGroup contains=cTodo
  17. " String and Character constants
  18. " Highlight special characters (those which have a backslash) differently
  19. syn match cSpecial display contained "\\\(x\x\+\|\o\{1,3}\|.\|$\)"
  20. if !exists("c_no_utf")
  21. syn match cSpecial display contained "\\\(u\x\{4}\|U\x\{8}\)"
  22. endif
  23. if exists("c_no_cformat")
  24. syn region cString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,@Spell
  25. " cCppString: same as cString, but ends at end of line
  26. syn region cCppString start=+L\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=cSpecial,@Spell
  27. else
  28. if !exists("c_no_c99") " ISO C99
  29. syn match cFormat display "%\(\d\+\$\)\=[-+' #0*]*\(\d*\|\*\|\*\d\+\$\)\(\.\(\d*\|\*\|\*\d\+\$\)\)\=\([hlLjzt]\|ll\|hh\)\=\([aAbdiuoxXDOUfFeEgGcCsSpn]\|\[\^\=.[^]]*\]\)" contained
  30. else
  31. syn match cFormat display "%\(\d\+\$\)\=[-+' #0*]*\(\d*\|\*\|\*\d\+\$\)\(\.\(\d*\|\*\|\*\d\+\$\)\)\=\([hlL]\|ll\)\=\([bdiuoxXDOUfeEgGcCsSpn]\|\[\^\=.[^]]*\]\)" contained
  32. endif
  33. syn match cFormat display "%%" contained
  34. syn region cString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spell
  35. " cCppString: same as cString, but ends at end of line
  36. syn region cCppString start=+L\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=cSpecial,cFormat,@Spell
  37. endif
  38. syn match cCharacter "L\='[^\\]'"
  39. syn match cCharacter "L'[^']*'" contains=cSpecial
  40. if exists("c_gnu")
  41. syn match cSpecialError "L\='\\[^'\"?\\abefnrtv]'"
  42. syn match cSpecialCharacter "L\='\\['\"?\\abefnrtv]'"
  43. else
  44. syn match cSpecialError "L\='\\[^'\"?\\abfnrtv]'"
  45. syn match cSpecialCharacter "L\='\\['\"?\\abfnrtv]'"
  46. endif
  47. syn match cSpecialCharacter display "L\='\\\o\{1,3}'"
  48. syn match cSpecialCharacter display "'\\x\x\{1,2}'"
  49. syn match cSpecialCharacter display "L'\\x\x\+'"
  50. "when wanted, highlight trailing white space
  51. if exists("c_space_errors")
  52. if !exists("c_no_trail_space_error")
  53. syn match cSpaceError display excludenl "\s\+$"
  54. endif
  55. if !exists("c_no_tab_space_error")
  56. syn match cSpaceError display " \+\t"me=e-1
  57. endif
  58. endif
  59. " This should be before cErrInParen to avoid problems with #define ({ xxx })
  60. if exists("c_curly_error")
  61. syntax match cCurlyError "}"
  62. syntax region cBlock start="{" end="}" contains=ALLBUT,cCurlyError,@cParenGroup,cErrInParen,cCppParen,cErrInBracket,cCppBracket,cCppString,@Spell fold
  63. else
  64. syntax region cBlock start="{" end="}" transparent fold
  65. endif
  66. "catch errors caused by wrong parenthesis and brackets
  67. " also accept <% for {, %> for }, <: for [ and :> for ] (C99)
  68. " But avoid matching <::.
  69. syn cluster cParenGroup contains=cParenError,cIncluded,cSpecial,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cUserCont,cUserLabel,cBitField,cOctalZero,cCppOut,cCppOut2,cCppSkip,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom
  70. if exists("c_no_curly_error")
  71. syn region cParen transparent start='(' end=')' contains=ALLBUT,@cParenGroup,cCppParen,cCppString,@Spell
  72. " cCppParen: same as cParen but ends at end-of-line; used in cDefine
  73. syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
  74. syn match cParenError display ")"
  75. syn match cErrInParen display contained "^[{}]\|^<%\|^%>"
  76. elseif exists("c_no_bracket_error")
  77. syn region cParen transparent start='(' end=')' contains=ALLBUT,@cParenGroup,cCppParen,cCppString,@Spell
  78. " cCppParen: same as cParen but ends at end-of-line; used in cDefine
  79. syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
  80. syn match cParenError display ")"
  81. syn match cErrInParen display contained "[{}]\|<%\|%>"
  82. else
  83. syn region cParen transparent start='(' end=')' contains=ALLBUT,@cParenGroup,cCppParen,cErrInBracket,cCppBracket,cCppString,@Spell
  84. " cCppParen: same as cParen but ends at end-of-line; used in cDefine
  85. syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cErrInBracket,cParen,cBracket,cString,@Spell
  86. syn match cParenError display "[\])]"
  87. syn match cErrInParen display contained "[\]{}]\|<%\|%>"
  88. syn region cBracket transparent start='\[\|<::\@!' end=']\|:>' contains=ALLBUT,@cParenGroup,cErrInParen,cCppParen,cCppBracket,cCppString,@Spell
  89. " cCppBracket: same as cParen but ends at end-of-line; used in cDefine
  90. syn region cCppBracket transparent start='\[\|<::\@!' skip='\\$' excludenl end=']\|:>' end='$' contained contains=ALLBUT,@cParenGroup,cErrInParen,cParen,cBracket,cString,@Spell
  91. syn match cErrInBracket display contained "[);{}]\|<%\|%>"
  92. endif
  93. "integer number, or floating point number without a dot and with "f".
  94. syn case ignore
  95. syn match cNumbers display transparent "\<\d\|\.\d" contains=cNumber,cFloat,cOctalError,cOctal
  96. " Same, but without octal error (for comments)
  97. syn match cNumbersCom display contained transparent "\<\d\|\.\d" contains=cNumber,cFloat,cOctal
  98. syn match cNumber display contained "\d\+\(u\=l\{0,2}\|ll\=u\)\>"
  99. "hex number
  100. syn match cNumber display contained "0x\x\+\(u\=l\{0,2}\|ll\=u\)\>"
  101. " Flag the first zero of an octal number as something special
  102. syn match cOctal display contained "0\o\+\(u\=l\{0,2}\|ll\=u\)\>" contains=cOctalZero
  103. syn match cOctalZero display contained "\<0"
  104. syn match cFloat display contained "\d\+f"
  105. "floating point number, with dot, optional exponent
  106. syn match cFloat display contained "\d\+\.\d*\(e[-+]\=\d\+\)\=[fl]\="
  107. "floating point number, starting with a dot, optional exponent
  108. syn match cFloat display contained "\.\d\+\(e[-+]\=\d\+\)\=[fl]\=\>"
  109. "floating point number, without dot, with exponent
  110. syn match cFloat display contained "\d\+e[-+]\=\d\+[fl]\=\>"
  111. if !exists("c_no_c99")
  112. "hexadecimal floating point number, optional leading digits, with dot, with exponent
  113. syn match cFloat display contained "0x\x*\.\x\+p[-+]\=\d\+[fl]\=\>"
  114. "hexadecimal floating point number, with leading digits, optional dot, with exponent
  115. syn match cFloat display contained "0x\x\+\.\=p[-+]\=\d\+[fl]\=\>"
  116. endif
  117. " flag an octal number with wrong digits
  118. syn match cOctalError display contained "0\o*[89]\d*"
  119. syn case match
  120. if exists("c_comment_strings")
  121. " A comment can contain cString, cCharacter and cNumber.
  122. " But a "*/" inside a cString in a cComment DOES end the comment! So we
  123. " need to use a special type of cString: cCommentString, which also ends on
  124. " "*/", and sees a "*" at the start of the line as comment again.
  125. " Unfortunately this doesn't very well work for // type of comments :-(
  126. syntax match cCommentSkip contained "^\s*\*\($\|\s\+\)"
  127. syntax region cCommentString contained start=+L\=\\\@<!"+ skip=+\\\\\|\\"+ end=+"+ end=+\*/+me=s-1 contains=cSpecial,cCommentSkip
  128. syntax region cComment2String contained start=+L\=\\\@<!"+ skip=+\\\\\|\\"+ end=+"+ end="$" contains=cSpecial
  129. syntax region cCommentL start="//" skip="\\$" end="$" keepend contains=@cCommentGroup,cComment2String,cCharacter,cNumbersCom,cSpaceError,@Spell
  130. if exists("c_no_comment_fold")
  131. " Use "extend" here to have preprocessor lines not terminate halfway a
  132. " comment.
  133. syntax region cComment matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cCommentString,cCharacter,cNumbersCom,cSpaceError,@Spell extend
  134. else
  135. syntax region cComment matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cCommentString,cCharacter,cNumbersCom,cSpaceError,@Spell fold extend
  136. endif
  137. else
  138. syn region cCommentL start="//" skip="\\$" end="$" keepend contains=@cCommentGroup,cSpaceError,@Spell
  139. if exists("c_no_comment_fold")
  140. syn region cComment matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cSpaceError,@Spell extend
  141. else
  142. syn region cComment matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cSpaceError,@Spell fold extend
  143. endif
  144. endif
  145. " keep a // comment separately, it terminates a preproc. conditional
  146. syntax match cCommentError display "\*/"
  147. syntax match cCommentStartError display "/\*"me=e-1 contained
  148. syn keyword cOperator sizeof
  149. if exists("c_gnu")
  150. syn keyword cStatement __asm__
  151. syn keyword cOperator typeof __real__ __imag__
  152. endif
  153. syn keyword cType int long short char void
  154. syn keyword cType signed unsigned float double
  155. if !exists("c_no_ansi") || exists("c_ansi_typedefs")
  156. syn keyword cType size_t ssize_t off_t wchar_t ptrdiff_t sig_atomic_t fpos_t
  157. syn keyword cType clock_t time_t va_list jmp_buf FILE DIR div_t ldiv_t
  158. syn keyword cType mbstate_t wctrans_t wint_t wctype_t
  159. endif
  160. if !exists("c_no_c99") " ISO C99
  161. syn keyword cType bool complex
  162. syn keyword cType int8_t int16_t int32_t int64_t
  163. syn keyword cType uint8_t uint16_t uint32_t uint64_t
  164. syn keyword cType int_least8_t int_least16_t int_least32_t int_least64_t
  165. syn keyword cType uint_least8_t uint_least16_t uint_least32_t uint_least64_t
  166. syn keyword cType int_fast8_t int_fast16_t int_fast32_t int_fast64_t
  167. syn keyword cType uint_fast8_t uint_fast16_t uint_fast32_t uint_fast64_t
  168. syn keyword cType intptr_t uintptr_t
  169. syn keyword cType intmax_t uintmax_t
  170. endif
  171. if exists("c_gnu")
  172. syn keyword cType __label__ __complex__ __volatile__
  173. endif
  174. syn keyword cStructure struct union enum typedef
  175. syn keyword cStorageClass static register auto volatile extern const
  176. if exists("c_gnu")
  177. syn keyword cStorageClass inline __attribute__
  178. endif
  179. if !exists("c_no_c99")
  180. syn keyword cStorageClass inline restrict
  181. endif
  182. if !exists("c_no_ansi") || exists("c_ansi_constants") || exists("c_gnu")
  183. if exists("c_gnu")
  184. syn keyword cConstant __GNUC__ __FUNCTION__ __PRETTY_FUNCTION__ __func__
  185. endif
  186. syn keyword cConstant __LINE__ __FILE__ __DATE__ __TIME__ __STDC__
  187. syn keyword cConstant __STDC_VERSION__
  188. syn keyword cConstant CHAR_BIT MB_LEN_MAX MB_CUR_MAX
  189. syn keyword cConstant UCHAR_MAX UINT_MAX ULONG_MAX USHRT_MAX
  190. syn keyword cConstant CHAR_MIN INT_MIN LONG_MIN SHRT_MIN
  191. syn keyword cConstant CHAR_MAX INT_MAX LONG_MAX SHRT_MAX
  192. syn keyword cConstant SCHAR_MIN SINT_MIN SLONG_MIN SSHRT_MIN
  193. syn keyword cConstant SCHAR_MAX SINT_MAX SLONG_MAX SSHRT_MAX
  194. if !exists("c_no_c99")
  195. syn keyword cConstant __func__
  196. syn keyword cConstant LLONG_MIN LLONG_MAX ULLONG_MAX
  197. syn keyword cConstant INT8_MIN INT16_MIN INT32_MIN INT64_MIN
  198. syn keyword cConstant INT8_MAX INT16_MAX INT32_MAX INT64_MAX
  199. syn keyword cConstant UINT8_MAX UINT16_MAX UINT32_MAX UINT64_MAX
  200. syn keyword cConstant INT_LEAST8_MIN INT_LEAST16_MIN INT_LEAST32_MIN INT_LEAST64_MIN
  201. syn keyword cConstant INT_LEAST8_MAX INT_LEAST16_MAX INT_LEAST32_MAX INT_LEAST64_MAX
  202. syn keyword cConstant UINT_LEAST8_MAX UINT_LEAST16_MAX UINT_LEAST32_MAX UINT_LEAST64_MAX
  203. syn keyword cConstant INT_FAST8_MIN INT_FAST16_MIN INT_FAST32_MIN INT_FAST64_MIN
  204. syn keyword cConstant INT_FAST8_MAX INT_FAST16_MAX INT_FAST32_MAX INT_FAST64_MAX
  205. syn keyword cConstant UINT_FAST8_MAX UINT_FAST16_MAX UINT_FAST32_MAX UINT_FAST64_MAX
  206. syn keyword cConstant INTPTR_MIN INTPTR_MAX UINTPTR_MAX
  207. syn keyword cConstant INTMAX_MIN INTMAX_MAX UINTMAX_MAX
  208. syn keyword cConstant PTRDIFF_MIN PTRDIFF_MAX SIG_ATOMIC_MIN SIG_ATOMIC_MAX
  209. syn keyword cConstant SIZE_MAX WCHAR_MIN WCHAR_MAX WINT_MIN WINT_MAX
  210. endif
  211. syn keyword cConstant FLT_RADIX FLT_ROUNDS
  212. syn keyword cConstant FLT_DIG FLT_MANT_DIG FLT_EPSILON
  213. syn keyword cConstant DBL_DIG DBL_MANT_DIG DBL_EPSILON
  214. syn keyword cConstant LDBL_DIG LDBL_MANT_DIG LDBL_EPSILON
  215. syn keyword cConstant FLT_MIN FLT_MAX FLT_MIN_EXP FLT_MAX_EXP
  216. syn keyword cConstant FLT_MIN_10_EXP FLT_MAX_10_EXP
  217. syn keyword cConstant DBL_MIN DBL_MAX DBL_MIN_EXP DBL_MAX_EXP
  218. syn keyword cConstant DBL_MIN_10_EXP DBL_MAX_10_EXP
  219. syn keyword cConstant LDBL_MIN LDBL_MAX LDBL_MIN_EXP LDBL_MAX_EXP
  220. syn keyword cConstant LDBL_MIN_10_EXP LDBL_MAX_10_EXP
  221. syn keyword cConstant HUGE_VAL CLOCKS_PER_SEC NULL
  222. syn keyword cConstant LC_ALL LC_COLLATE LC_CTYPE LC_MONETARY
  223. syn keyword cConstant LC_NUMERIC LC_TIME
  224. syn keyword cConstant SIG_DFL SIG_ERR SIG_IGN
  225. syn keyword cConstant SIGABRT SIGFPE SIGILL SIGHUP SIGINT SIGSEGV SIGTERM
  226. " Add POSIX signals as well...
  227. syn keyword cConstant SIGABRT SIGALRM SIGCHLD SIGCONT SIGFPE SIGHUP
  228. syn keyword cConstant SIGILL SIGINT SIGKILL SIGPIPE SIGQUIT SIGSEGV
  229. syn keyword cConstant SIGSTOP SIGTERM SIGTRAP SIGTSTP SIGTTIN SIGTTOU
  230. syn keyword cConstant SIGUSR1 SIGUSR2
  231. syn keyword cConstant _IOFBF _IOLBF _IONBF BUFSIZ EOF WEOF
  232. syn keyword cConstant FOPEN_MAX FILENAME_MAX L_tmpnam
  233. syn keyword cConstant SEEK_CUR SEEK_END SEEK_SET
  234. syn keyword cConstant TMP_MAX stderr stdin stdout
  235. syn keyword cConstant EXIT_FAILURE EXIT_SUCCESS RAND_MAX
  236. " Add POSIX errors as well
  237. syn keyword cConstant E2BIG EACCES EAGAIN EBADF EBADMSG EBUSY
  238. syn keyword cConstant ECANCELED ECHILD EDEADLK EDOM EEXIST EFAULT
  239. syn keyword cConstant EFBIG EILSEQ EINPROGRESS EINTR EINVAL EIO EISDIR
  240. syn keyword cConstant EMFILE EMLINK EMSGSIZE ENAMETOOLONG ENFILE ENODEV
  241. syn keyword cConstant ENOENT ENOEXEC ENOLCK ENOMEM ENOSPC ENOSYS
  242. syn keyword cConstant ENOTDIR ENOTEMPTY ENOTSUP ENOTTY ENXIO EPERM
  243. syn keyword cConstant EPIPE ERANGE EROFS ESPIPE ESRCH ETIMEDOUT EXDEV
  244. " math.h
  245. syn keyword cConstant M_E M_LOG2E M_LOG10E M_LN2 M_LN10 M_PI M_PI_2 M_PI_4
  246. syn keyword cConstant M_1_PI M_2_PI M_2_SQRTPI M_SQRT2 M_SQRT1_2
  247. endif
  248. if !exists("c_no_c99") " ISO C99
  249. syn keyword cConstant true false
  250. endif
  251. " Accept %: for # (C99)
  252. syn region cPreCondit start="^\s*\(%:\|#\)\s*\(if\|ifdef\|ifndef\|elif\)\>" skip="\\$" end="$" end="//"me=s-1 contains=cComment,cCppString,cCharacter,cCppParen,cParenError,cNumbers,cCommentError,cSpaceError
  253. syn match cPreCondit display "^\s*\(%:\|#\)\s*\(else\|endif\)\>"
  254. if !exists("c_no_if0")
  255. if !exists("c_no_if0_fold")
  256. syn region cCppOut start="^\s*\(%:\|#\)\s*if\s\+0\+\>" end=".\@=\|$" contains=cCppOut2 fold
  257. else
  258. syn region cCppOut start="^\s*\(%:\|#\)\s*if\s\+0\+\>" end=".\@=\|$" contains=cCppOut2
  259. endif
  260. syn region cCppOut2 contained start="0" end="^\s*\(%:\|#\)\s*\(endif\>\|else\>\|elif\>\)" contains=cSpaceError,cCppSkip
  261. syn region cCppSkip contained start="^\s*\(%:\|#\)\s*\(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*\(%:\|#\)\s*endif\>" contains=cSpaceError,cCppSkip
  262. endif
  263. syn region cIncluded display contained start=+"+ skip=+\\\\\|\\"+ end=+"+
  264. syn match cIncluded display contained "<[^>]*>"
  265. syn match cInclude display "^\s*\(%:\|#\)\s*include\>\s*["<]" contains=cIncluded
  266. "syn match cLineSkip "\\$"
  267. syn cluster cPreProcGroup contains=cPreCondit,cIncluded,cInclude,cDefine,cErrInParen,cErrInBracket,cUserLabel,cSpecial,cOctalZero,cCppOut,cCppOut2,cCppSkip,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom,cString,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cParen,cBracket,cMulti
  268. syn region cDefine start="^\s*\(%:\|#\)\s*\(define\|undef\)\>" skip="\\$" end="$" end="//"me=s-1 keepend contains=ALLBUT,@cPreProcGroup,@Spell
  269. syn region cPreProc start="^\s*\(%:\|#\)\s*\(pragma\>\|line\>\|warning\>\|warn\>\|error\>\)" skip="\\$" end="$" keepend contains=ALLBUT,@cPreProcGroup,@Spell
  270. " Highlight User Labels
  271. syn cluster cMultiGroup contains=cIncluded,cSpecial,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cUserCont,cUserLabel,cBitField,cOctalZero,cCppOut,cCppOut2,cCppSkip,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom,cCppParen,cCppBracket,cCppString
  272. syn region cMulti transparent start='?' skip='::' end=':' contains=ALLBUT,@cMultiGroup,@Spell
  273. " Avoid matching foo::bar() in C++ by requiring that the next char is not ':'
  274. syn cluster cLabelGroup contains=cUserLabel
  275. syn match cUserCont display "^\s*\I\i*\s*:$" contains=@cLabelGroup
  276. syn match cUserCont display ";\s*\I\i*\s*:$" contains=@cLabelGroup
  277. syn match cUserCont display "^\s*\I\i*\s*:[^:]"me=e-1 contains=@cLabelGroup
  278. syn match cUserCont display ";\s*\I\i*\s*:[^:]"me=e-1 contains=@cLabelGroup
  279. syn match cUserLabel display "\I\i*" contained
  280. " Avoid recognizing most bitfields as labels
  281. syn match cBitField display "^\s*\I\i*\s*:\s*[1-9]"me=e-1 contains=cType
  282. syn match cBitField display ";\s*\I\i*\s*:\s*[1-9]"me=e-1 contains=cType
  283. " Highlight Class and Function names
  284. syn match cCustomParen "(" contains=cParen,cCppParen
  285. syn match cCustomFunc "\w\+\s*(" contains=cCustomParen
  286. syn match cCustomScope "::"
  287. syn match cCustomClass "\w\+\s*::" contains=cCustomScope
  288. hi def link cCustomFunc Function
  289. hi def link cCustomClass Function
  290. if exists("c_minlines")
  291. let b:c_minlines = c_minlines
  292. else
  293. if !exists("c_no_if0")
  294. let b:c_minlines = 50 " #if 0 constructs can be long
  295. else
  296. let b:c_minlines = 15 " mostly for () constructs
  297. endif
  298. endif
  299. if exists("c_curly_error")
  300. syn sync fromstart
  301. else
  302. exec "syn sync ccomment cComment minlines=" . b:c_minlines
  303. endif
  304. " Define the default highlighting.
  305. " Only used when an item doesn't have highlighting yet
  306. hi def link cFormat cSpecial
  307. hi def link cCppString cString
  308. hi def link cCommentL cComment
  309. hi def link cCommentStart cComment
  310. hi def link cLabel Label
  311. hi def link cUserLabel Label
  312. hi def link cConditional Conditional
  313. hi def link cRepeat Repeat
  314. hi def link cCharacter Character
  315. hi def link cSpecialCharacter cSpecial
  316. hi def link cNumber Number
  317. hi def link cOctal Number
  318. hi def link cOctalZero PreProc " link this to Error if you want
  319. hi def link cFloat Float
  320. hi def link cOctalError cError
  321. hi def link cParenError cError
  322. hi def link cErrInParen cError
  323. hi def link cErrInBracket cError
  324. hi def link cCommentError cError
  325. hi def link cCommentStartError cError
  326. hi def link cSpaceError cError
  327. hi def link cSpecialError cError
  328. hi def link cCurlyError cError
  329. hi def link cOperator Operator
  330. hi def link cStructure Structure
  331. hi def link cStorageClass StorageClass
  332. hi def link cInclude Include
  333. hi def link cPreProc PreProc
  334. hi def link cDefine Macro
  335. hi def link cIncluded cString
  336. hi def link cError Error
  337. hi def link cStatement Statement
  338. hi def link cPreCondit PreCondit
  339. hi def link cType Type
  340. hi def link cConstant Constant
  341. hi def link cCommentString cString
  342. hi def link cComment2String cString
  343. hi def link cCommentSkip cComment
  344. hi def link cString String
  345. hi def link cComment Comment
  346. hi def link cSpecial SpecialChar
  347. hi def link cTodo Todo
  348. hi def link cCppSkip cCppOut
  349. hi def link cCppOut2 cCppOut
  350. hi def link cCppOut Comment
  351. let b:current_syntax = "c"
  352. " vim: ts=8