1" Vim syntax file
2" Language:	HTML with Cheetah tags
3" Maintainer:	Max Ischenko <[email protected]>
4" Last Change: 2003-05-11
5
6" quit when a syntax file was already loaded
7if exists("b:current_syntax")
8  finish
9endif
10
11if !exists("main_syntax")
12  let main_syntax = 'html'
13endif
14
15runtime! syntax/cheetah.vim
16runtime! syntax/html.vim
17unlet b:current_syntax
18
19syntax cluster htmlPreproc add=cheetahPlaceHolder
20syntax cluster htmlString add=cheetahPlaceHolder
21
22let b:current_syntax = "htmlcheetah"
23
24
25