CopyPastor

Detecting plagiarism made easy.

Score: 1; Reported for: Exact paragraph match Open both answers

Possible Plagiarism

Plagiarized on 2019-03-05
by ALEEF02

Original Post

Original - Posted on 2015-04-30
by Alex Dima



            
Present in both answers; Present only in the new answer; Present only in the old answer;

You can change your tab size by going to **Windows** in menu *File* → *Preferences* → *User Settings* and for **Mac** in menu *Code* → *Preferences* → *Settings* or `⌘` <!-- language: lang-js -->
// 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
By default, Visual Studio Code will try to guess your indentation options depending on the file you open.
You can turn off indentation guessing via `"editor.detectIndentation": false`.
You can customize this easily via these three settings for **Windows** in menu *File* → *Preferences* → *User Settings* and for **Mac** in menu *Code* → *Preferences* → *Settings* or `⌘,`:
<!-- language: lang-js -->
// 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

        
Present in both answers; Present only in the new answer; Present only in the old answer;