Getting started with Visual Studio Code
In this tutorial, we walk you through setting up Visual Studio Code and give an overview of the basic features.
Here's the next video we recommend: Code Editing in Visual Studio Code
Pick another video from the list: Introductory Videos
Video outline
- Download and install VS Code.
- Open a folder
- File > Open Folder (
Ctrl+K Ctrl+O
)
- File > Open Folder (
- File Explorer
- View > Explorer (
Ctrl+Shift+E
)
- View > Explorer (
- Search view
- View > Search (
kb(workbench.view.search)
)
- View > Search (
- Source Control
- View > Source Control (SCM) (
Ctrl+Shift+G
)
- View > Source Control (SCM) (
- Run and Debug
- View > Run (
Ctrl+Shift+D
)
- View > Run (
- Extensions view
- View > Extensions (
Ctrl+Shift+X
)
- View > Extensions (
- Open the Command Palette.
- View > Command Palette... (
Ctrl+Shift+P
)
- View > Command Palette... (
- Output panel
- View > Output (
kb(workbench.action.output.toggleOutput)
)
- View > Output (
- Debug Console
- View > Debug Console (
Ctrl+Shift+Y
)
- View > Debug Console (
- Problems panel
- View > Problems (
Ctrl+Shift+M
)
- View > Problems (
- Integrated Terminal
- View > Terminal (
Ctrl+`
)
- View > Terminal (
- Create a new file
- File > New File (
kb(workbench.action.files.newUntitledFile)
)
- File > New File (
- Save a file
- File > Save (
Ctrl+S
)
- File > Save (
- Auto Save
- File > Auto Save
- Run
- Run > Start Debugging (
F5
)
- Run > Start Debugging (
- Programming language extensions
- Python - IntelliSense, linting, debugging, code formatting, refactoring, and more.
- Live Preview - Hosts a local server to preview your webpages.
- Zoom
- Zoom out (
kb(workbench.action.zoomOut)
) - Zoom in (
kb(workbench.action.zoomIn)
)
- Zoom out (
- Customize your editor with color themes.
- File > Preferences > Theme > Color Theme (
kb(workbench.action.selectTheme)
)
- File > Preferences > Theme > Color Theme (
Next video
- Code Editing in Visual Studio Code - Learn about the advanced code editing features in VS Code.
- Introductory Videos - Review the entire list of videos.
Related resources
- User Interface - View the documentation for VS Code.
- Setup Overview - Documentation for getting up and running with VS Code, including platform specific setup.
- IntelliSense -VS Code brings smart code completions as you type.