Fix issue/333. skip any escaped characters in quotes.
This commit is contained in:
parent
d2967cda0e
commit
d0e03932c1
1 changed files with 2 additions and 2 deletions
|
@ -71,8 +71,8 @@ syn match pbInt /\<0[xX]\x+\>/
|
|||
syn match pbFloat /\<-\?\d*\(\.\d*\)\?/
|
||||
syn region pbComment start="\/\*" end="\*\/" contains=@pbCommentGrp
|
||||
syn region pbComment start="//" skip="\\$" end="$" keepend contains=@pbCommentGrp
|
||||
syn region pbString start=/"/ skip=/\\"/ end=/"/
|
||||
syn region pbString start=/'/ skip=/\\'/ end=/'/
|
||||
syn region pbString start=/"/ skip=/\\./ end=/"/
|
||||
syn region pbString start=/'/ skip=/\\./ end=/'/
|
||||
|
||||
if version >= 508 || !exists("did_proto_syn_inits")
|
||||
if version < 508
|
||||
|
|
Loading…
Add table
Reference in a new issue