zsh.vim (454B)
1 if exists("b:current_syntax") 2 unlet b:current_syntax 3 endif 4 syn include @AWKScript syntax/awk.vim 5 syn region AWKScriptCode matchgroup=AWKCommand start=+[=\\]\@<!'+ skip=+\\'+ end=+'+ contains=@AWKScript contained 6 syn region AWKScriptEmbedded matchgroup=AWKCommand start=+\<awk\>+ skip=+\\$+ end=+[=\\]\@<!'+me=e-1 contains=@shIdList,@shExprList2 nextgroup=AWKScriptCode 7 syn cluster shCommandSubList add=AWKScriptEmbedded 8 hi def link AWKCommand statement