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.

html.vim 506B

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