提交 e1880326 编写于 作者: I isidor

output: use keychord for toggling output

fixes #8707
上级 2c0b4812
......@@ -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"));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册