0

In Visual Studio, when you type an opening bracket and press enter, it automatically puts it in a new line.

// before pressing enter
public class Item { /* cursor here */ }

// after pressing enter
public class Item
{
    // cursor here
}

How can I reproduce this behavior with Visual Studio Code?

Adrian Mole
  • 43,040
  • 110
  • 45
  • 72
  • 3
    Does this answer your question? [How do I set up VSCode to put curly braces on a new line?](https://stackoverflow.com/questions/32900921/how-do-i-set-up-vscode-to-put-curly-braces-on-a-new-line) – Ahmed Shaqanbi Jan 01 '22 at 10:28

0 Answers0