]> git.r.bdr.sh - rbdr/dotfiles/blob - vim/after/syntax/html.vim
Add vim again :)
[rbdr/dotfiles] / vim / after / syntax / html.vim
1 " Language: CoffeeScript
2 " Maintainer: Mick Koch <kchmck@gmail.com>
3 " URL: http://github.com/kchmck/vim-coffee-script
4 " License: WTFPL
5
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