I'm trying to find my perfect workflow with CSS and Sass files in Sublime Text 3. What I need is:
- Sass files syntax highlighting
- CSS Comb to order properties alphabetically on saving
- Property and value hinting, using the newest CSS3 data
Sass highlighting can be achieved by installing Sass package.
I also managed to set CSS Comb on saving, like this:
{
"on_pre_save_language": [
{
"command": "css_comb"
}
]
}
CSS3 hints are wonderfully delivered by CSS3 package, but Sass package seems to provide its own ones and they are not satisfactory.
There are other Sass packages, but they break CSS Comb entirely.
How can all these requirements be combined? Can I disable hints from Sass package and make Sublime use CSS3 ones instead? Or maybe should I do it other way?