Timmy
Timmy

Reputation: 63

VSCode - cursor problem when expanding brackets

When I create a new class and brackets for it and hit enter to expand it this is how it worked before (cursor on its own line):

.class {
  //cursor here
}

now for some reason it work like this (cursor on the same line as closing bracket):

.class {
//cursor here}

Anyone knows what setting did I messed up and how to fix it so it works as before? Tried disabling all extensions but the problem is still there.

Upvotes: 0

Views: 29

Answers (1)

Timmy
Timmy

Reputation: 63

Found the problem. Somehow I managed to set this line

"editor.language.brackets": []

in my settings.json file

Upvotes: 0

Related Questions