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

Time:06-16

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

CodePudding user response:

I found Solution you need to right click on it and select hide control layout it will remove the windows icons

CodePudding user response:

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

  • Related