Kokodoko
Kokodoko

Reputation: 28128

How to remove window icons on the top right of VS Code?

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?

vscode

Upvotes: 1

Views: 1467

Answers (2)

Kiran Mistry
Kiran Mistry

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

MarioG8
MarioG8

Reputation: 5921

Top left corner in Visual-Studio-Code, Open file => Preferences => settings than click on the top right side Open Settings (JSON)

enter image description here

And You need to add to your settings.json this line:

"editor.renderControlCharacters": false,

enter image description here

Upvotes: 1

Related Questions