Reputation: 1
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
Reputation: 1
Use the below settings to hide the menus:
{
"window.titleBarStyle": "custom",
"window.menuBarVisibility": "hidden",
"window.customMenuBarAltFocus": false
}
Upvotes: 0