davidrios / jade-tmbundle

A comprehensive textmate / sublime text bundle for the Jade template language.
https://github.com/davidrios/jade-tmbundle
MIT License
102 stars 31 forks source link

inline coffee script not being highlighted #14

Closed leoyuholo closed 11 years ago

leoyuholo commented 11 years ago

Inline coffeescript does not give any highlighting at all (all the code are in white color). For example:

!!! 5
html
    head
        meta(charset="utf-8")
        title Sample
    body
    :coffee(bare=true)
        greet = (name) ->
            return 'Hello, ' + name + '!'
        console.log greet 'World'

the part under :coffee are all in white color.

Thank you!

wprater commented 11 years ago

I checked the source and you have to use :coffeescript, however, the snippets are not working.

leoyuholo commented 11 years ago

Oh, it works. Thank you!