This commit is contained in:
Joao Moreno 2019-07-04 16:26:22 +02:00
parent 64162b6781
commit 4fee26255a

View file

@ -531,7 +531,7 @@ export class WorkbenchKeybindingService extends AbstractKeybindingService {
}
mightProducePrintableCharacter(event: IKeyboardEvent): boolean {
if (event.ctrlKey || event.metaKey) {
if (event.ctrlKey || event.metaKey || event.altKey) {
// ignore ctrl/cmd-combination but not shift/alt-combinatios
return false;
}