Reputation: 7141
I'd like to remove/disable light grey dots.
Upvotes: 19
Views: 13816
Reputation: 481
To remove/disable/hide VsCode gray dots,
Go to the View tab and uncheck this: View > Render Whitespace
Upvotes: 15
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