提交 9371e305 编写于 作者: D Daniel Imms

Remove cmd+` to toggle terminal on Mac

Leaving this unbound for now.

Fixes #6481
上级 ca21802c
......@@ -139,6 +139,8 @@ if (product.quality === 'alpha') {
// Register toggle output action globally
let actionRegistry = <IWorkbenchActionRegistry>Registry.as(ActionExtensions.WorkbenchActions);
actionRegistry.registerWorkbenchAction(new SyncActionDescriptor(ToggleTerminalAction, ToggleTerminalAction.ID, ToggleTerminalAction.LABEL, {
primary: KeyMod.CtrlCmd | KeyCode.US_BACKTICK
primary: KeyMod.CtrlCmd | KeyCode.US_BACKTICK,
// on mac this keybinding is reserved to cycle between windows
mac: { primary: null }
}), 'View: ' + ToggleTerminalAction.LABEL, nls.localize('viewCategory', "View"));
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册