output: use keychord for toggling output

fixes #8707
This commit is contained in:
isidor
2016-07-05 14:48:17 +02:00
parent 2c0b481230
commit e18803261c

View File

@@ -44,7 +44,7 @@ let actionRegistry = <IWorkbenchActionRegistry>platform.Registry.as(ActionExtens
actionRegistry.registerWorkbenchAction(new SyncActionDescriptor(ToggleOutputAction, ToggleOutputAction.ID, ToggleOutputAction.LABEL, {
primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KEY_U,
linux: {
primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KEY_H // On Ubuntu Ctrl+Shift+U is taken by some global OS command
primary: KeyMod.chord(KeyMod.CtrlCmd | KeyCode.KEY_K, KeyMod.CtrlCmd | KeyCode.KEY_U) // On Ubuntu Ctrl+Shift+U is taken by some global OS command
}
}), 'View: Toggle Output', nls.localize('viewCategory', "View"));