Sass + CSS3 + CSS Comb in Sublime Text 3

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?

+7
css css3 sass sublimetext3
source share
2 answers

I use the package: SASS and SASS Solutions. Also use SASS as my file type in the lower right setting. Package space is also good! To make your code tidier.

0
source share

This is the official site for installing Sublime Text packages. Run the Python command that it tells you in the Sublime console to enable the installation of the package (all instructions for this are given in the following link). https://packagecontrol.io/installation

Then press CMD + SHIFT + P and enter the Package Control: Install Package command. Click on the correct drop-down list and enter Sass. This will install the Sass package for you, and all the Sass files that you open will have automatic syntax highlighting after restarting Sublime.

0
source share

All Articles