Sass support for sublime text 3

Is there a way to make autocomplete work for scss in the same way that it works for css?
For example, I type backg and then tab , and it gives me background:; but not in scss files ...

I installed all the packages for scss support ... but there is only syntax highlighting that works.

+2
source share
1 answer

You can install Emmet (formerly Zen Coding), it is an extremely powerful tool for creating css (and scss), for example:
I type bi and press tab , and it gives me: background-image: url(|); (using | your cursor).

If you're interested, check out this:

Now, how to make it work with scss:

Answer here

  • You need to install the sass-textmate-bundle package for scss and do what I wrote.
  • If you need sass, not scss, check this answer , especially the second answer from Alexander Ekdahl
+6
source

All Articles