mustache.vim 918 B

1234567891011121314
  1. " Patch for https://github.com/mustache/vim-mustache-handlebars
  2. " Use containedin=mustacheTemplateBlock in place of containedin=Top
  3. syntax clear mustacheBlockComment
  4. syntax region mustacheBlockComment start=/{{!--/rs=s+2 skip=/{{.\{-}}}/ end=/--}}/re=e-2 contains=Todo contained extend containedin=mustacheTemplateBlock,@mustacheInside,@htmlMustacheContainer
  5. syntax clear mustacheComment
  6. syntax region mustacheComment start=/{{!/rs=s+2 skip=/{{.\{-}}}/ end=/}}/re=e-2 contains=Todo contained containedin=mustacheTemplateBlock,@mustacheInside,@htmlMustacheContainer
  7. syntax clear mustacheAngleComponent
  8. syntax region mustacheAngleComponent start=/<\/\?[[:upper:]]/ end=/>/ keepend containedin=mustacheTemplateBlock,@htmlMustacheContainer
  9. syntax clear mustacheHbsComponent
  10. syntax region mustacheHbsComponent start=/{{[^!][$#^/]\?/ end=/}}}\?/ keepend containedin=mustacheTemplateBlock,@htmlMustacheContainer