We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34e6cee commit ecb962cCopy full SHA for ecb962c
1 file changed
Core/Sources/ChatGPTChatTab/ChatPanel.swift
@@ -398,6 +398,13 @@ struct ChatPanelInputArea: View {
398
EmptyView()
399
}
400
.keyboardShortcut(KeyEquivalent.return, modifiers: [.shift])
401
+
402
+ Button(action: {
403
+ isInputAreaFocused = true
404
+ }) {
405
+ EmptyView()
406
+ }
407
+ .keyboardShortcut("l", modifiers: [.command])
408
409
410
0 commit comments