Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

haml.vim 656B

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