mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-27 04:07:13 +01:00
fix #195280
This commit is contained in:
@@ -184,8 +184,8 @@ class AccessibleViewAcceptInlineCompletionAction extends Action2 {
|
||||
id: AccessibilityCommandId.AccessibleViewAcceptInlineCompletion,
|
||||
precondition: ContextKeyExpr.and(accessibleViewIsShown, ContextKeyExpr.equals(accessibleViewCurrentProviderId.key, AccessibleViewProviderId.InlineCompletions)),
|
||||
keybinding: {
|
||||
primary: KeyMod.CtrlCmd | KeyCode.Slash,
|
||||
mac: { primary: KeyMod.WinCtrl | KeyCode.Slash },
|
||||
primary: KeyMod.CtrlCmd | KeyCode.Enter,
|
||||
mac: { primary: KeyMod.WinCtrl | KeyCode.Enter },
|
||||
weight: KeybindingWeight.WorkbenchContrib
|
||||
},
|
||||
icon: Codicon.check,
|
||||
|
||||
@@ -180,7 +180,12 @@ export function registerChatCodeBlockActions() {
|
||||
menu: {
|
||||
id: MenuId.ChatCodeBlock,
|
||||
group: 'navigation',
|
||||
}
|
||||
},
|
||||
keybinding: {
|
||||
primary: KeyMod.CtrlCmd | KeyCode.Enter,
|
||||
mac: { primary: KeyMod.WinCtrl | KeyCode.Enter },
|
||||
weight: KeybindingWeight.WorkbenchContrib
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user