Visual Studio Code Tips and Tricks
Visual Studio Code Tips and Tricks
Visual Studio Code Tips and Tricks
"Tips and Tricks" lets you jump right in and learn how to be productive with Visual Studio Code. You'll become familiar with its powerful editing, code intelligence, and source code
control features and learn useful keyboard shortcuts. This topic goes pretty fast and provides a broad overview, so be sure to look at the other in-depth topics in Getting Started
(/docs/getstarted/userinterface) and the User Guide (/docs/editor/codebasics) to learn more.
If you don't have Visual Studio Code installed, go to the Download (/download) page. You can find platform specific setup instructions at Running VS Code on Linux
(/docs/setup/linux), macOS (/docs/setup/mac), and Windows (/docs/setup/windows).
Basics
Getting started
Open the Welcome page to get started with the basics of VS Code. Help > Welcome.
In the bottom right of the Welcome page, there is a link to the Interactive playground where you can interactively try out VS Code's features. Help > Interactive Playground.
Command Palette
Access all available commands based on your current context.
Quick Open
Quickly open files.
Command line
VS Code has a powerful command line interface (CLI) which allows you to customize how the editor is launched to support various scenarios.
Make sure the VS Code binary is on your path so you can simply type 'code' to launch VS Code. See the platform specific setup topics if VS Code is added to your environment
path during installation (Running VS Code on Linux (/docs/setup/linux), macOS (/docs/setup/mac), Windows (/docs/setup/windows)).
# open the current directory in the most recently used code window
code -r .
.vscode folder
Workspace specific files are in a .vscode folder at the root. For example, tasks.json for the Task Runner and launch.json for the debugger.
Status Bar
Errors and warnings
Keyboard Shortcut: Ctrl+Shift+M
You can filter problems either by type ('errors', 'warnings') or text matching.
If you want to persist the new language mode for that file type, you can use the Configure File Association for command to associate the current file extension with an installed
language.
Customization
There are many things you can do to customize VS Code.
You can install more themes from the VS Code extension Marketplace (https://marketplace.visualstudio.com/search?target=VSCode&category=Themes&sortBy=Downloads).
Additionally, you can install and change your File Icon themes.
Keymaps
Are you used to keyboard shortcuts from another editor? You can install a Keymap extension that brings the keyboard shortcuts from your favorite editor to VS Code. Go to
Preferences > Keymap Extensions to see the current list on the Marketplace (https://marketplace.visualstudio.com/search?
target=VSCode&category=Keymaps&sortBy=Downloads). Some of the more popular ones:
Vim (https://marketplace.visualstudio.com/items?itemName=vscodevim.vim)
Sublime Text Keymap (https://marketplace.visualstudio.com/items?itemName=ms-vscode.sublime-keybindings)
Emacs Keymap (https://marketplace.visualstudio.com/items?itemName=hiro-sun.vscode-emacs)
Atom Keymap (https://marketplace.visualstudio.com/items?itemName=ms-vscode.atom-keybindings)
Eclipse Keymap (https://marketplace.visualstudio.com/items?itemName=alphabotsec.vscode-eclipse-keybindings)
You can search for shortcuts and add your own keybindings to the keybindings.json file.
Format on paste
"editor.formatOnPaste": true
// Main editor
"editor.fontSize": 18,
// Terminal panel
"terminal.integrated.fontSize": 14,
// Output panel
"[Log]": {
"editor.fontSize": 15
}
Font ligatures
Tip: You will need to have a font installed that supports font ligatures. FiraCode (https://github.com/tonsky/FiraCode) is a popular font on the VS Code team.
Auto Save
"files.autoSave": "afterDelay"
You can also toggle Auto Save from the top-level menu with the File > Auto Save.
Format on save
"editor.formatOnSave": true
"editor.tabSize": 4
Spaces or Tabs
"editor.insertSpaces": true
Render whitespace
"editor.renderWhitespace": "all"
"files.exclude": {
"somefolder/": true,
"somefile": true
}
"search.exclude": {
"someFolder/": true,
"somefile": true
}
"[languageid]": {
Tip: You can also create language specific settings with the Configure Language Specific Settings command.
Add JSON validation
Enabled by default for many file types. Create your own schema and validation in settings.json
"json.schemas": [
{
"fileMatch": [
"/bower.json"
],
"url": "http://json.schemastore.org/bower"
}
]
"json.schemas": [
{
"fileMatch": [
"/foo.json"
],
"url": "./myschema.json"
}
]
or a custom schema
"json.schemas": [
{
"fileMatch": [
"/.myconfig"
],
"schema": {
"type": "object",
"properties": {
"name" : {
"type": "string",
"description": "The name of the entry"
}
}
}
},
Extensions
Keyboard Shortcut: Ctrl+Shift+X
Find extensions
1. In the VS Code Marketplace (https://marketplace.visualstudio.com/vscode).
2. Search inside VS Code in the Extensions view.
3. View extension recommendations
4. Community curated extension lists, such as awesome-vscode (https://github.com/viatsko/awesome-vscode).
Install extensions
In the Extensions view, you can search via the search bar or click the More Actions (...) button to filter and sort by install count.
Extension recommendations
In the Extensions view, click Show Recommended Extensions in the More Actions (...) button menu.
configuration
commands
keybindings
languages
debuggers
grammars
themes
snippets
jsonValidation
Further reading:
Auto Save
Open User Settings settings.json with Ctrl+,
"files.autoSave": "afterDelay"
You can also toggle Auto Save from the top-level menu with the File > Auto Save.
Toggle Sidebar
Keyboard Shortcut: Ctrl+B
Zen mode
Keyboard Shortcut: Ctrl+K Z
Enter distraction free Zen mode.
You can also drag and drop editors to create new editor groups and move editors between groups.
You can quickly open a file or image or create a new file by moving the cursor to the file link and using Ctrl+click .
Navigation history
Navigate entire history: Ctrl+Tab
"files.associations": {
".database": "json"
}
In order to resolve the save conflict, click the Compare action in the error message to open a diff editor that will show you the contents of the file on disk (to the left) compared to
the contents in VS Code (on the right):
Use the actions in the editor toolbar to resolve the save conflict. You can either Accept your changes and thereby overwriting any changes on disk, or Revert to the version on disk.
Reverting means that your changes will be lost.
Note: The file will remain dirty and cannot be saved until you pick one of the two actions to resolve the conflict.
Editing hacks
Here is a selection of common features for editing code. If the keyboard shortcuts aren't comfortable for you, consider installing a keymap extension
(https://marketplace.visualstudio.com/search?target=VSCode&category=Keymaps&sortBy=Downloads) for your old editor.
Tip: You can see recommended keymap extensions in the Extensions view with Ctrl+K Ctrl+M which filters the search to @recommended:keymaps .
Note: You can also change the modifier to Ctrl/Cmd for applying multiple cursors with the editor.multiCursorModifier setting (/docs/getstarted/settings) . See Multi-cursor
Modifier (/docs/editor/codebasics#_multicursor-modifier) for details.
If you do not want to add all occurrences of the current selection, you can use Ctrl+D instead. This only selects the next occurrence after the one you selected so you can add
selections one by one.
You can also use keyboard shortcuts (/docs/editor/codebasics#_column-box-selection) to trigger column selection.
Fast scrolling
Pressing the Alt key enables fast scrolling in the editor and Explorers. By default, fast scrolling uses a 5X speed multiplier but you can control the multiplier with the Editor: Fast
Scroll Sensitivity ( editor.fastScrollSensitivity ) setting.
The commands Copy Line Up/Down are unbound on Linux because the VS Code default keybindings would conflict with Ubuntu keybindings, see Issue #509
(https://github.com/Microsoft/vscode/issues/509). You can still set the commands editor.action.copyLinesUpAction and editor.action.copyLinesDownAction to your own
preferred keyboard shortcuts.
Move line up and down
Keyboard Shortcut: Alt+Up or Alt+Down
Go to Symbol in File
Keyboard Shortcut: Ctrl+Shift+O
Go to Symbol in Workspace
Keyboard Shortcut: Ctrl+T
Navigate to a specific line
Keyboard Shortcut: Ctrl+G
Code formatting
Currently selected source code: Ctrl+K Ctrl+F
Code folding
Keyboard Shortcut: Ctrl+Shift+[ and Ctrl+Shift+]
Select current line
Keyboard Shortcut: Ctrl+L
The preview and editor will synchronize with your scrolling in either view.
IntelliSense
Ctrl+Space to trigger the Suggestions widget.
You can view available methods, parameter hints, short documentation, etc.
Peek
Select a symbol then type Alt+F12 . Alternatively, you can use the context menu.
Go to Definition
Select a symbol then type F12 . Alternatively, you can use the context menu or Ctrl+click ( Cmd+click on macOS).
You can go back to your previous location with the Go > Back command or Alt+Left .
You can also see the type definition if you press Ctrl ( Cmd on macOS) when you are hovering over the type.
Peek References
Select a symbol then type Shift+F12 . Alternatively, you can use the context menu.
Find All References view
Select a symbol then type Shift+Alt+F12 to open the References view showing all your file's symbols in a dedicated view.
Rename Symbol
Select a symbol then type F2 . Alternatively, you can use the context menu.
Search and modify
Besides searching and replacing expressions, you can also search and reuse parts of what was matched, using regular expressions with capturing groups. Enable regular expressions
in the search box by clicking the Use Regular Expression .* button ( Alt+R ) and then write a regular expression and use parenthesis to define groups. You can then reuse the
content matched in each group by using $1 , $2 , etc. in the Replace field.
.eslintrc.json
Install the ESLint extension (https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint). Configure your linter however you'd like. Consult the ESLint
specification (https://eslint.org/docs/user-guide/configuring) for details on its linting rules and options.
package.json
See IntelliSense for your package.json file.
Emmet syntax
Support for Emmet syntax (/docs/editor/emmet).
Snippets
Create custom snippets
File > Preferences > User Snippets (Code > Preferences > User Snippets on macOS), select the language, and create a snippet.
"create component": {
"prefix": "component",
"body": [
"class $1 extends React.Component {",
"",
"\trender() {",
"\t\treturn ($2);",
"\t}",
"",
"}"
]
},
Git integration
Keyboard Shortcut: Ctrl+Shift+G
Git integration comes with VS Code "out-of-the-box". You can install other SCM providers from the extension Marketplace. This section describes the Git integration but much of the
UI and gestures are shared by other SCM providers.
Diffs
From the Source Control view, select the file to diff.
Side by side
Toggle inline view by clicking the More Actions (...) button in the top right and selecting Switch to Inline View.
If you prefer the inline view, you can set "diffEditor.renderSideBySide": false .
Review pane
Navigate through diffs with F7 and Shift+F7 . This will present them in a unified patch format. Lines can be navigated with arrow keys and pressing Enter will jump back in the
diff editor and the selected line.
Edit pending changes
You can make edits directly in the pending changes of the diff view.
Branches
Easily switch between Git branches via the Status Bar.
Staging
Stage all
Hover over the number of files and click the plus button.
Stage selected
Stage a portion of a file by selecting that file (using the arrows) and then choosing Stage Selected Ranges from the Command Palette.
Use the Toggle Output command ( Ctrl+Shift+U ) and select Git in the drop-down.
Gutter indicators
View diff decorations in editor. See documentation (/docs/editor/versioncontrol#_gutter-indicators) for more details.
Debugging
Configure debugger
Open the Command Palette ( Ctrl+Shift+P ) and select Debug: Open launch.json, which will prompt you to select the environment that matches your project (Node.js, Python,
C++, etc). This will generate a launch.json file. Node.js support is built-in and other environments require installing the appropriate language extensions. See the debugging
documentation (/docs/editor/debugging) for more details.
Task runner
Auto detect tasks
Select Terminal from the top-level menu, run the command Configure Tasks, then select the type of task you'd like to run. This will generate a tasks.json file with content like the
following. See the Tasks (/docs/editor/tasks) documentation for more details.
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "install",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
There are occasionally issues with auto generation. Check out the documentation for getting things to work properly.
For example, to bind Ctrl+H to the Run tests task, add the following:
{
"key": "ctrl+h",
"command": "workbench.action.tasks.runTask",
"args": "Run tests"
}
From the explorer you can open a script in the editor, run it as a task, and launch it with the node debugger (when the script defines a debug option like --inspect-brk ). The
default action on click is to open the script. To run a script on a single click, set npm.scriptExplorerAction to "run". Use the setting npm.exclude to exclude scripts in
package.json files contained in particular folders.
Portable mode
VS Code has a Portable mode (/docs/editor/portable) which lets you keep settings and data in the same location as your installation, for example, on a USB drive.
Insiders builds
The Visual Studio Code team uses the Insiders version to test the latest features and bug fixes of VS Code. You can also use the Insiders version by downloading it here (/insiders).
For Early Adopters - Insiders has the most recent code changes for users and extension authors to try out.
Frequent Builds - New builds every day with the latest bug fixes and features.
Side-by-side install - Insiders installs next to the Stable build allowing you to use either independently.
Yes No
7/3/2019
IN THIS ARTICLE
Basics
Command line
Status Bar
Customization
Extensions
{ Editing hacks
IntelliSense
Snippets
Git integration
Debugging
Task runner
Portable mode
Insiders builds
Tweet(https://twitter.com/intent/tweet?original_referer=https://code.visualstudio.com/docs/getstarted/tips-and-
this tricks#vscode&ref_src=twsrc%5Etfw&text=Visual%20Studio%20Code%20Tips%20and%20Tricks&tw_p=tweetbutton&url=https://code.visualstudio.com/docs/getstarted/tips-
link and-tricks#vscode&via=code)
Subscribe(/feed.xml)
Ask questions(https://stackoverflow.com/questions/tagged/vscode)
Follow @code(https://go.microsoft.com/fwlink/?LinkID=533687)
Request features(https://go.microsoft.com/fwlink/?LinkID=533482)
Report issues(https://www.github.com/Microsoft/vscode/issues)
Watch videos(https://www.youtube.com/channel/UCs5Y5_7XK8HLDX0SLNwkd3w)
Hello from Seattle. Follow @code (https://go.microsoft.com/fwlink/?LinkID=533687) Star 79,485
Support (https://support.microsoft.com/en-us/getsupport?wf=0&tenant=ClassicCommercial&oaspworkflow=start_1.0.0.0&locale=en-us&supportregion=en-us&pesid=16064&ccsid=636196895839595242)
Privacy (https://privacy.microsoft.com/en-us/privacystatement) Terms of Use (https://www.microsoft.com/en-us/legal/intellectualproperty/copyright/default.aspx) License (/License)
(https://www.microsoft.com)
© 2019 Microsoft