We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf87192 commit 070c136Copy full SHA for 070c136
1 file changed
Core/Sources/Preferences/Keys.swift
@@ -144,6 +144,17 @@ public struct UserDefaultPreferenceKeys {
144
public var suggestionFeatureEnabledProjectList: SuggestionFeatureEnabledProjectList {
145
.init()
146
}
147
+
148
+ // MARK: - Suggestion Feature Disabled Language List
149
150
+ public struct SuggestionFeatureDisabledLanguageList: UserDefaultPreferenceKey {
151
+ public let defaultValue: [String] = []
152
+ public let key = "SuggestionFeatureDisabledLanguageList"
153
+ }
154
155
+ public var suggestionFeatureDisabledLanguageList: SuggestionFeatureDisabledLanguageList {
156
+ .init()
157
158
159
// MARK: - Prompt to Code Feature Provider
160
0 commit comments