diff --git a/src/vs/workbench/contrib/chat/browser/actions/chatClearActions.ts b/src/vs/workbench/contrib/chat/browser/actions/chatClearActions.ts index 5f9d608f387..ef054418e5e 100644 --- a/src/vs/workbench/contrib/chat/browser/actions/chatClearActions.ts +++ b/src/vs/workbench/contrib/chat/browser/actions/chatClearActions.ts @@ -328,7 +328,7 @@ export function registerNewChatActions() { constructor() { super({ id: 'workbench.action.chat.openEditSession', - title: localize2('chat.openEdits.label', "Open Edit Session"), + title: localize2('chat.openEdits.label', "Open {0}", 'Copilot Edits'), category: CHAT_CATEGORY, icon: Codicon.goToEditingSession, precondition: ContextKeyExpr.and(CONTEXT_CHAT_ENABLED, CONTEXT_CHAT_EDITING_PARTICIPANT_REGISTERED), @@ -343,7 +343,12 @@ export function registerNewChatActions() { when: CONTEXT_CHAT_EDITING_PARTICIPANT_REGISTERED, group: 'a_chatEdit', order: 1 - }] + }], + keybinding: { + weight: KeybindingWeight.WorkbenchContrib, + primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyI, + when: ContextKeyExpr.and(ContextKeyExpr.notEquals('view', EDITS_VIEW_ID), CONTEXT_CHAT_EDITING_PARTICIPANT_REGISTERED) + } }); } diff --git a/src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.ts b/src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.ts index 05652beb196..48974bfee61 100644 --- a/src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.ts +++ b/src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.ts @@ -109,10 +109,7 @@ class QuickChatGlobalAction extends Action2 { category: CHAT_CATEGORY, keybinding: { weight: KeybindingWeight.WorkbenchContrib, - primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyI, - linux: { - primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyMod.Alt | KeyCode.KeyI - } + primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyMod.Alt | KeyCode.KeyI, }, menu: { id: MenuId.ChatCommandCenter,