skip to Main Content

i want vc code to create space when i do { + enter key

VS Code does this

h1 {
|}

i want VS Code to do this

h1 {
 |
}

2

Answers


  1. Chosen as BEST ANSWER

    Fixed it by deleting all JSON settings


  2. in my case it was

    "editor.language.brackets": [],
    

    in vscode settings.json

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search