Adarsh Kumar
Adarsh Kumar

Reputation: 115

How to remove unnecessary indentation guides in VSCode?

I want to remove the indentation lines that are marked in red as they serve no purpose. I want to make the indentation of 1 tab = 4 spaces, but VSCode automatically made it as 1 tab = 2 spaces. How can I fix this?

enter image description here

Upvotes: -1

Views: 949

Answers (2)

pclinux
pclinux

Reputation: 189

Don't show the indentations for each individual tab using:

"editor.guides.indentation": false,

Upvotes: 0

User
User

Reputation: 610

I want to remove the indentation lines that are marked in red as they serve no purpose.

File->Preference->Settings and search for "renderIndentGuides". 

uncheck    Editor: Render Indent Guides 

I want to make the indentation of 1 tab = 4 spaces, but VSCode automatically made it as 1 tab = 2 spaces.

Gotto 
File->Prefrences->setting -> Detect Indentation -> Click editor:TabSize 
Here you can update to 4

Upvotes: 1

Related Questions