1 " Language: CoffeeScript
2 " Maintainer: Mick Koch <kchmck@gmail.com>
3 " URL: http://github.com/kchmck/vim-coffee-script
6 " Syntax highlighting for text/coffeescript script tags
7 syn include @htmlCoffeeScript syntax/coffee.vim
8 syn region coffeeScript start=+<script [^>]*type *=[^>]*text/coffeescript[^>]*>+
9 \ end=+</script>+me=s-1 keepend
10 \ contains=@htmlCoffeeScript,htmlScriptTag,@htmlPreproc