Lines Matching refs:sy
14 sy match melSpaceError "\s\+$"
15 sy match melSpaceError " \+\t"me=e-1
19 sy keyword melBoolean true false yes no on off
21 sy keyword melFunction proc
22 sy match melIdentifier "\$\(\a\|_\)\w*"
24 sy keyword melStatement break continue return
25 sy keyword melConditional if else switch
26 sy keyword melRepeat while for do in
27 sy keyword melLabel case default
28 sy keyword melOperator size eval env exists whatIs
29 sy keyword melKeyword alias
30 sy keyword melException catch error warning
32 sy keyword melInclude source
34 sy keyword melType int float string vector matrix
35 sy keyword melStorageClass global
37 sy keyword melDebug trace
39 sy keyword melTodo contained TODO FIXME XXX
42 sy match melCharSpecial contained "\\[ntr\\"]"
43 sy match melCharError contained "\\[^ntr\\"]"
45 sy region melString start=+"+ skip=+\\"+ end=+"+ contains=melCharSpecial,melCharError
47 sy case ignore
48 sy match melInteger "\<\d\+\(e[-+]\=\d\+\)\=\>"
49 sy match melFloat "\<\d\+\(e[-+]\=\d\+\)\=f\>"
50 sy match melFloat "\<\d\+\.\d*\(e[-+]\=\d\+\)\=f\=\>"
51 sy match melFloat "\.\d\+\(e[-+]\=\d\+\)\=f\=\>"
52 sy case match
54 sy match melCommaSemi contained "[,;]"
55 sy region melMatrixVector start=/<</ end=/>>/ contains=melInteger,melFloat,melIdentifier,melCommaSe…
57 sy cluster melGroup contains=melFunction,melStatement,melConditional,melLabel,melKeyword,melStorage…
60 sy region melParen transparent start='(' end=')' contains=ALLBUT,@melGroup,melParenError,melInParen
61 sy match melParenError ")"
62 sy match melInParen contained "[{}]"
65 sy region melComment start="/\*" end="\*/" contains=melTodo,melSpaceError
66 sy match melComment "//.*" contains=melTodo,melSpaceError
67 sy match melCommentError "\*/"
69 sy region melQuestionColon matchgroup=melConditional transparent start='?' end=':' contains=ALLBUT,…
74 exec "sy sync ccomment melComment minlines=" . mel_minlines