Answers for "vscode auto save"

2

autoformating for code in vscode when i save it

"editor.formatOnSave": true
Posted by: Guest on November-19-2020
3

vscode autoindent on save

Use [Ctrl]+[Shift]+[p]
Type "Preferences"
Select "Preferences: Open User Settings"
Search for "format"
Change "Editor: Format On Save" or "Editor: Format On Paste".
Posted by: Guest on September-25-2020
5

vscode auto save

File -> Auto Save (Click on it)
Posted by: Guest on June-20-2021
7

command palette vscode

On windows: Use Ctrl+Shift+P to open the commmand palette
Posted by: Guest on June-11-2020
5

multiple word select in vs code

//Selects the word at the cursor, or the next occurrence of the current selection.
Ctrl+D 

//To add cursors to all the occurrences of a highlighted word 
Ctrl+Shift+L 
//Then select all occurrences of that word
Posted by: Guest on August-31-2020

Browse Popular Code Answers by Language