We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87b4992 commit 8692e74Copy full SHA for 8692e74
1 file changed
Core/Sources/SuggestionWidget/SuggestionPanelContent/PromptToCodePanel.swift
@@ -88,8 +88,10 @@ struct PromptToCodePanel: View {
88
Button(action: {
89
provider.acceptSuggestion()
90
}) {
91
- Text("Accept")
92
- }.buttonStyle(CommandButtonStyle(color: .indigo))
+ Text("Accept(⌘ + ⏎)")
+ }
93
+ .buttonStyle(CommandButtonStyle(color: .indigo))
94
+ .keyboardShortcut(KeyEquivalent.return, modifiers: [.command])
95
}
96
97
.padding(8)
0 commit comments