Home > OS >  How to remove top right buttons from vscode
How to remove top right buttons from vscode

Time:04-12

I love to keep things simple and minimal and that also applies to my code editor. There are some buttons in vscode i found annoying and i want to hide them. unfortunately i couldn't find the settings for these buttons.

enter image description here

Does anyone know how to hide these buttons?

CodePudding user response:

The top set of buttons are known as the Layout controls.

There is a setting to disable them: Workbench > Layout Control: Enabled - uncheck it.

For what they do, see https://stackoverflow.com/a/69329503/836330

I don't believe there is any way to remove the other buttons, especially the split and ... buttons. The > button may be added by an extension which may make its appearance optional though.

  • Related