Answers for "vscode tab size"

4

vscode tab size

"editor.insertSpaces": true,
    "editor.tabSize": 2,
Posted by: Guest on May-22-2020
4

vscode set tab size

// The number of spaces a tab is equal to. This setting is overridden
// based on the file contents when `editor.detectIndentation` is true.
"editor.tabSize": 4,

// Insert spaces when pressing Tab. This setting is overriden
// based on the file contents when `editor.detectIndentation` is true.
"editor.insertSpaces": true,

// When opening a file, `editor.tabSize` and `editor.insertSpaces`
// will be detected based on the file contents. Set to false to keep
// the values you've explicitly set, above.
"editor.detectIndentation": false
Posted by: Guest on May-21-2020
0

vscode change explorer tab size

#Increase or decrease the visual indention of trees displayed in the workbench.
#tree.indent 
"workbench.tree.indent": 40
Posted by: Guest on June-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language