• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/vim-53/runtime/syntax/

Lines Matching +refs:dcl +refs:end +refs:of +refs:command

10 " developing software of ATM switch at LGIC (LG Information
22 " A bunch of useful CHILL keywords
37 syn region chillString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=chillSpecial
50 syn region chillParen transparent start='(' end=')' contains=ALLBUT,@chillParenGroup
72 " But a "*/" inside a chillString in a chillComment DOES end the comment! So we
73 " need to use a special type of chillString: chillCommentString, which also ends on
74 " "*/", and sees a "*" at the start of the line as comment again.
75 " Unfortunately this doesn't very well work for // type of comments :-(
77 syntax region chillCommentString contained start=+"+ skip=+\\\\\|\\"+ end=+"+ end=+\*/+me=s-1 contains=chillSpecial,chillCommentSkip
78 syntax region chillComment2String contained start=+"+ skip=+\\\\\|\\"+ end=+"+ end="$" contains=chillSpecial
79 syntax region chillComment start="/\*" end="\*/" contains=chillTodo,chillCommentString,chillCharacter,chillNumber,chillFloat,chillSpaceError
82 syn region chillComment start="/\*" end="\*/" contains=chillTodo,chillSpaceError
88 syn keyword chillType dcl DCL int INT char CHAR bool BOOL REF ref LOC loc INSTANCE instance
91 syn keyword chillBlock PROC proc END end
96 syn region chillPreCondit start="^\s*#\s*\(if\>\|ifdef\>\|ifndef\>\|elif\>\|else\>\|endif\>\)" skip="\\$" end="$" contains=chillComment,chillString,chillCharacter,chillNumber,chillCommentError,chillSpaceError
97 syn region chillIncluded contained start=+"+ skip=+\\\\\|\\"+ end=+"+
102 syn region chillDefine start="^\s*#\s*\(define\>\|undef\>\)" skip="\\$" end="$" contains=ALLBUT,@chillPreProcGroup
103 syn region chillPreProc start="^\s*#\s*\(pragma\>\|line\>\|warning\>\|warn\>\|error\>\)" skip="\\$" end="$" contains=ALLBUT,@chillPreProcGroup
107 syn region chillMulti transparent start='?' end=':' contains=ALLBUT,@chillMultiGroup
132 command -nargs=+ HiLink hi link <args>
134 command -nargs=+ HiLink hi def link <args>