Strangerliquid
Strangerliquid

Reputation: 237

Visual Studio Code - Set default syntax for .scss files

Problems setting default syntax for .scss files.

Reading the docs and this is how you should set it:

"files.associations": {
    "*.scss": "Sass (indented)"
},

But it not works. Have anyone similar problems?

When I try to change syntax manually (clicking right bottom corner) it appears as Sass (indented) maybe in system it has another name? like sass_indented or sass indented or e.t.c.

None of this does not work for me.

Upvotes: 0

Views: 501

Answers (1)

Josan
Josan

Reputation: 722

Have you tried just saas?

"files.associations": {
    "*.scss": "sass"
}

Or press ctrl+space to bring up the IntelliSense to show the available language identifiers [Ref].

Upvotes: 1

Related Questions