diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-06-21 01:14:11 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-06-21 01:14:13 +0200 |
commit | f49c21799b766df07366fda223bcfe21490a3920 (patch) | |
tree | a0123887ef097091216a1e7a7d63c1bf93fcf7f4 | |
parent | 91a34032ca66181a8374daa419dce4d97537b5d5 (diff) | |
download | dotfiles-f49c21799b766df07366fda223bcfe21490a3920.tar.gz dotfiles-f49c21799b766df07366fda223bcfe21490a3920.tar.bz2 dotfiles-f49c21799b766df07366fda223bcfe21490a3920.zip |
Fixed xquery syntax
Diffstat (limited to '')
-rw-r--r-- | .vim/syntax/xquery.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/syntax/xquery.vim b/.vim/syntax/xquery.vim index 267f4f1..70eaf9b 100644 --- a/.vim/syntax/xquery.vim +++ b/.vim/syntax/xquery.vim @@ -76,7 +76,7 @@ highlight link xqSeparator Operator syn region xqString start=+"+ end=+"+ highlight def link xqString String -syn region xqCode transparent contained start='{' excludenl end='}' contains=xmlRegionBis,xqComment,xqueryStatement,xmlString,xqSeparator,cNumber,xqVariable,xqString keepend extend +syn region xqCode transparent contained start='{' excludenl end='}' contains=xqueryFunction,xqCode,xmlRegionBis,xqComment,xqueryStatement,xmlString,xqSeparator,cNumber,xqVariable,xqString keepend extend syn region xmlRegionBis start=+<\z([^ /!?<>"']\+\)+ skip=+<!--\_.\{-}-->+ end=+</\z1\_\s\{-}>+ end=+/>+ fold contains=xmlTag,xmlEndTag,xmlCdata,xmlRegionBis,xmlComment,xmlEntity,xmlProcessing,xqCode keepend extend |