@@ -122,6 +122,26 @@ public extension UserDefaultPreferenceKeys {
122122 . init( defaultValue: false , key: " GitHubCopilotVerboseLog " )
123123 }
124124
125+ var gitHubCopilotProxyHost : PreferenceKey < String > {
126+ . init( defaultValue: " " , key: " GitHubCopilotProxyHost " )
127+ }
128+
129+ var gitHubCopilotProxyPort : PreferenceKey < String > {
130+ . init( defaultValue: " " , key: " GitHubCopilotProxyPort " )
131+ }
132+
133+ var gitHubCopilotUseStrictSSL : PreferenceKey < Bool > {
134+ . init( defaultValue: true , key: " GitHubCopilotUseStrictSSL " )
135+ }
136+
137+ var gitHubCopilotProxyUsername : PreferenceKey < String > {
138+ . init( defaultValue: " " , key: " GitHubCopilotProxyUsername " )
139+ }
140+
141+ var gitHubCopilotProxyPassword : PreferenceKey < String > {
142+ . init( defaultValue: " " , key: " GitHubCopilotProxyPassword " )
143+ }
144+
125145 var nodePath : PreferenceKey < String > {
126146 . init( defaultValue: " " , key: " NodePath " )
127147 }
@@ -245,7 +265,7 @@ public extension UserDefaultPreferenceKeys {
245265 key: " DefaultChatSystemPrompt "
246266 )
247267 }
248-
268+
249269 var chatSearchPluginMaxIterations : PreferenceKey < Int > {
250270 . init( defaultValue: 3 , key: " ChatSearchPluginMaxIterations " )
251271 }
@@ -257,9 +277,12 @@ public extension UserDefaultPreferenceKeys {
257277 var bingSearchSubscriptionKey : PreferenceKey < String > {
258278 . init( defaultValue: " " , key: " BingSearchSubscriptionKey " )
259279 }
260-
280+
261281 var bingSearchEndpoint : PreferenceKey < String > {
262- . init( defaultValue: " https://api.bing.microsoft.com/v7.0/search/ " , key: " BingSearchEndpoint " )
282+ . init(
283+ defaultValue: " https://api.bing.microsoft.com/v7.0/search/ " ,
284+ key: " BingSearchEndpoint "
285+ )
263286 }
264287}
265288
@@ -326,15 +349,15 @@ public extension UserDefaultPreferenceKeys {
326349 var triggerActionWithAccessibilityAPI : FeatureFlag {
327350 . init( defaultValue: true , key: " FeatureFlag-TriggerActionWithAccessibilityAPI " )
328351 }
329-
352+
330353 var animationACrashSuggestion : FeatureFlag {
331354 . init( defaultValue: true , key: " FeatureFlag-AnimationACrashSuggestion " )
332355 }
333-
356+
334357 var animationBCrashSuggestion : FeatureFlag {
335358 . init( defaultValue: true , key: " FeatureFlag-AnimationBCrashSuggestion " )
336359 }
337-
360+
338361 var animationCCrashSuggestion : FeatureFlag {
339362 . init( defaultValue: true , key: " FeatureFlag-AnimationCCrashSuggestion " )
340363 }
0 commit comments