Skip to content

Commit

Permalink
chore(ai): avoid conflicting keybinding for opening chat window
Browse files Browse the repository at this point in the history
ctrlcmd+shift+e is actually used already for the navigator. VS Code uses ctrlcmd+alt+i. So I used that as a keybinding for the chat view instead.
  • Loading branch information
planger committed Nov 21, 2024
1 parent 77cba8c commit 7b0bd4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ai-chat-ui/src/browser/ai-chat-ui-contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class AIChatContribution extends AbstractViewContribution<ChatViewWidget>
rank: 100
},
toggleCommandId: AI_CHAT_TOGGLE_COMMAND_ID,
toggleKeybinding: 'ctrlcmd+shift+e'
toggleKeybinding: 'ctrlcmd+alt+i'
});
}

Expand Down

0 comments on commit 7b0bd4f

Please sign in to comment.