2

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

I have installed all packages to support scss... but there is only syntax highlighting that is working.

BeauCielBleu
  • 379
  • 2
  • 11
Alex
  • 283
  • 1
  • 2
  • 12

1 Answers1

6

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

If you are interested, please take a look at this:

Now, how to make it works with scss:

The answer is here

  • You have to install the package sass-textmate-bundle for scss and do what I have wrote.
  • If you need sass and not scss, check this answer, especially the second response from Alexander Ekdahl
Community
  • 1
  • 1
BeauCielBleu
  • 379
  • 2
  • 11