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

Does not autobuild .jade files anymore #57

Closed J-Kallunki closed 8 years ago

J-Kallunki commented 8 years ago

works with checkout fea35b5

davidrios commented 8 years ago

What is your configuration to enable autobuild?

J-Kallunki commented 8 years ago

Should be defaults. And works with checkout fea35b5. SublimeOnSaveBuild.sublime-settings:

{
    "filename_filter": "\\.(css|js|sass|less|scss|jade)$",
    "build_on_save": 1
}

Jade.sublime-build:

{
    "cmd": ["jade", "$file", "--pretty"],
    "selector": "source.jade",
    "osx": {"path": "/usr/local/bin:$PATH"},
    "windows": {"shell": "true"}
}
davidrios commented 8 years ago

I guess it will work if you change "selector": "source.jade" to "selector": "text.jade".

davidrios commented 8 years ago

Could you please try this version of sublime build: https://github.com/davidrios/Sublime-Jade-Build and tell me if that solves this problem?

davidrios commented 8 years ago

I'm closing this for lack of further feedback and because the problem is not with this package.