Home | History | Annotate | Download | only in editors

Lines Matching refs:syn

51 syn case match
53 syn keyword pbTodo contained TODO FIXME XXX
54 syn cluster pbCommentGrp contains=pbTodo
56 syn keyword pbSyntax syntax import option
57 syn keyword pbStructure package message group
58 syn keyword pbRepeat optional required repeated
59 syn keyword pbDefault default
60 syn keyword pbExtend extend extensions to max
61 syn keyword pbRPC service rpc returns
63 syn keyword pbType int32 int64 uint32 uint64 sint32 sint64
64 syn keyword pbType fixed32 fixed64 sfixed32 sfixed64
65 syn keyword pbType float double bool string bytes
66 syn keyword pbTypedef enum
67 syn keyword pbBool true false
69 syn match pbInt /-\?\<\d\+\>/
70 syn match pbInt /\<0[xX]\x+\>/
71 syn match pbFloat /\<-\?\d*\(\.\d*\)\?/
72 syn region pbComment start="\/\*" end="\*\/" contains=@pbCommentGrp
73 syn region pbComment start="//" skip="\\$" end="$" keepend contains=@pbCommentGrp
74 syn region pbString start=/"/ skip=/\\./ end=/"/
75 syn region pbString start=/'/ skip=/\\./ end=/'/