Jerry
Jerry

Reputation: 1

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

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?

Upvotes: 0

Views: 616

Answers (1)

Jerry
Jerry

Reputation: 1

Use the below settings to hide the menus:

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

Upvotes: 0

Related Questions