We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27c576e commit b47de8fCopy full SHA for b47de8f
1 file changed
Core/Sources/HostApp/FeatureSettings/SuggestionSettingsView.swift
@@ -54,6 +54,8 @@ struct SuggestionSettingsView: View {
54
var suggestionDisplayCompactMode
55
@AppStorage(\.acceptSuggestionWithTab)
56
var acceptSuggestionWithTab
57
+ @AppStorage(\.dismissSuggestionWithEsc)
58
+ var dismissSuggestionWithEsc
59
@AppStorage(\.isSuggestionSenseEnabled)
60
var isSuggestionSenseEnabled
61
@@ -185,6 +187,10 @@ struct SuggestionSettingsView: View {
185
187
Text("Accept Suggestion with Tab")
186
188
}
189
190
+
191
+ Toggle(isOn: $settings.dismissSuggestionWithEsc) {
192
+ Text("Dismiss Suggestion with ESC")
193
+ }
194
#endif
195
196
HStack {
0 commit comments