Last active
March 12, 2018 19:07
-
-
Save acbrent25/76c051da2b49ae772d74488c0213ec6c to your computer and use it in GitHub Desktop.
[VS Code Set tab space] #vscode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // The number of spaces a tab is equal to. This setting is overriden | |
| // 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment