We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f91f5 commit 199a916Copy full SHA for 199a916
1 file changed
packages/ui/src/components/editor/ChatInput/ChatInput.tsx
@@ -265,7 +265,7 @@ export const ChatInput: React.FC<Props> = (props) => {
265
e.stopPropagation()
266
props.on_search_click()
267
}
268
- if (e.key == 'c' && e.shiftKey && (e.ctrlKey || e.metaKey)) {
+ if (e.key == 'c' && e.altKey && (e.ctrlKey || e.metaKey)) {
269
if (props.on_copy) {
270
271
e.preventDefault()
@@ -332,8 +332,8 @@ export const ChatInput: React.FC<Props> = (props) => {
332
? props.submit_disabled_title ?? ''
333
: `Copy to clipboard (${
334
navigator.userAgent.toUpperCase().indexOf('MAC') >= 0
335
- ? '⇧⌘C'
336
- : 'Ctrl+Shift+C'
+ ? '⌥⌘C'
+ : 'Ctrl+Alt+C'
337
})`
338
339
disabled={!props.is_in_code_completions_mode && !props.value}
0 commit comments