I am trying to find the perfect workflow with CSS and Sass files in Sublime Text 3. I need:
- Sass file syntax highlighting
- CSS Comb for sorting properties alphabetically while saving
- Property Values ββand Values ββUsing Latest CSS3 Data
Sass highlighting can be achieved by installing the Sass package .
I also managed to set CSS Comb to save, for example:
{ "on_pre_save_language": [ { "command": "css_comb" } ] }
CSS3 tips are wonderfully delivered by CSS3 , but the Sass package seems to provide its own, and they are not satisfactory.
There are other Sass packages, but they completely break CSS Comb.
How can all these requirements be combined? Can I disable hints from the Sass package and use CSS3 instead of Sublime? Or maybe I should do it differently?
css css3 sass sublimetext3
Robo robok
source share