serkan
serkan

Reputation: 7141

VsCode remove indent style - dot

I'd like to remove/disable light grey dots.

enter image description here

Upvotes: 19

Views: 13816

Answers (3)

Carlo
Carlo

Reputation: 11

You can try shortcut Ctrl+R,Ctrl+W

Upvotes: -1

Taib Islam Dipu
Taib Islam Dipu

Reputation: 481

To remove/disable/hide VsCode gray dots,
Go to the View tab and uncheck this: View > Render Whitespace

enter image description here

Upvotes: 15

Ali Heikal
Ali Heikal

Reputation: 4113

Just put this line in your settings.json file:

"editor.renderWhitespace": "none"

Another approach is via the main menu View -> Toggle Render Whitespace

Upvotes: 27

Related Questions