blob: 5333de69cbce10b8bdab68ddf487d420576f4ed6 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'coffee-script') == -1
  
" Language:    CoffeeScript
" Maintainer:  Sven Felix Oberquelle <Svelix.Github@gmail.com>
" URL:         http://github.com/kchmck/vim-coffee-script
" License:     WTFPL
" Inherit coffee from html so coffeeComment isn't redefined and given higher
" priority than hamlInterpolation.
syn cluster hamlCoffeescript contains=@htmlCoffeeScript
syn region  hamlCoffeescriptFilter matchgroup=hamlFilter
\                                  start="^\z(\s*\):coffee\z(script\)\?\s*$"
\                                  end="^\%(\z1 \| *$\)\@!"
\                                  contains=@hamlCoffeeScript,hamlInterpolation
\                                  keepend
endif
 |