How to stop alt key from triggering vscode's menus bar on linux?

393 views Asked by At

When using VSCode on eOS, the menus on the title bar is pretty annoying if I hold the alt key or use some keyboard shortcut like shif + alt + RightArrow. So, how can we stop this behavior?

1

There are 1 answers

0
Jerry On

Use the below settings to hide the menus:

{
  "window.titleBarStyle": "custom",
  "window.menuBarVisibility": "hidden",
  "window.customMenuBarAltFocus": false
}