Reputation: 28128
Visual Studio Code has tons of options to customise the interface, but I can't figure out how to remove those pesky window icons on the top right: those buttons that open the sidebar and bottom bar. Is this possible?
Upvotes: 1
Views: 1467
Reputation: 2725
I found a solution: you need to right click on it and select hide control layout, it will remove the windows icons.
Upvotes: 4
Reputation: 5921
Top left corner in Visual-Studio-Code, Open file => Preferences => settings than click on the top right side Open Settings (JSON)
And You need to add to your settings.json
this line:
"editor.renderControlCharacters": false,
Upvotes: 1