I am following along with the Unity Turn Based Strategy - Intermediate C# Coding course right now and it is my first time using Visual Studio Code. What are some of the shortcuts to help with time? Such as navigating around a line of code to add parenthesis or automatically making curly brackets at the end of a function and spacing them out.
Here’s a fantastic link to Visual Studio Code keyboard shortcuts.
2 Likes
The code completion settings (automatically adding closing () or {}) is in the preferences, not a shortcut
Also some of the most useful shortcuts are the general ones unrelated to any IDE, just Ctrl + Left/Right to move word for word, the Home and End keys, Ctrl + X to cut the current line.
2 Likes