mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-coffee-script/after/syntax/html.vim

21 lines
709 B
VimL
Raw Normal View History

2012-08-16 23:41:25 -04:00
" Language: CoffeeScript
" Maintainer: Mick Koch <mick@kochm.co>
2012-08-16 23:41:25 -04:00
" URL: http://github.com/kchmck/vim-coffee-script
" License: WTFPL
2016-08-20 07:23:52 -04:00
if exists('b:current_syntax')
let s:current_syntax_save = b:current_syntax
endif
2012-08-16 23:41:25 -04:00
" Syntax highlighting for text/coffeescript script tags
syn include @htmlCoffeeScript syntax/coffee.vim
syn region coffeeScript start=#<script [^>]*type="text/coffeescript"[^>]*>#
\ end=#</script>#me=s-1 keepend
2012-08-16 23:41:25 -04:00
\ contains=@htmlCoffeeScript,htmlScriptTag,@htmlPreproc
\ containedin=htmlHead
2016-08-20 07:23:52 -04:00
if exists('s:current_syntax_save')
let b:current_syntax = s:current_syntax_save
unlet s:current_syntax_save
endif