Skip to content

Commit d56c242

Browse files
committed
Changes mode from startup to auto (microsoft#257059)
1 parent 369b377 commit d56c242

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/vs/editor/common/config/editorOptions.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4481,7 +4481,7 @@ class InlineEditorSuggest extends BaseEditorOption<EditorOption.inlineSuggest, I
44814481
tags: ['experimental'],
44824482
description: nls.localize('inlineSuggest.suppressInlineSuggestions', "Suppresses inline completions for specified extension IDs -- comma separated."),
44834483
experiment: {
4484-
mode: 'startup'
4484+
mode: 'auto'
44854485
}
44864486
},
44874487
'editor.inlineSuggest.experimental.triggerCommandOnProviderChange': {
@@ -4490,7 +4490,7 @@ class InlineEditorSuggest extends BaseEditorOption<EditorOption.inlineSuggest, I
44904490
tags: ['experimental'],
44914491
description: nls.localize('inlineSuggest.triggerCommandOnProviderChange', "Controls whether to trigger a command when the inline suggestion provider changes."),
44924492
experiment: {
4493-
mode: 'startup'
4493+
mode: 'auto'
44944494
}
44954495
},
44964496
'editor.inlineSuggest.fontFamily': {
@@ -6351,7 +6351,7 @@ export const EditorOptions = {
63516351
{
63526352
description: nls.localize('quickSuggestionsDelay', "Controls the delay in milliseconds after which quick suggestions will show up."),
63536353
experiment: {
6354-
mode: 'startup'
6354+
mode: 'auto'
63556355
}
63566356
}
63576357
)),

src/vs/workbench/contrib/editTelemetry/browser/editTelemetry.contribution.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ configurationRegistry.registerConfiguration({
3232
default: false,
3333
tags: ['experimental'],
3434
experiment: {
35-
mode: 'startup'
35+
mode: 'auto'
3636
}
3737
},
3838
[EDIT_TELEMETRY_DETAILS_SETTING_ID]: {
@@ -41,7 +41,7 @@ configurationRegistry.registerConfiguration({
4141
default: false,
4242
tags: ['experimental'],
4343
experiment: {
44-
mode: 'startup'
44+
mode: 'auto'
4545
}
4646
},
4747
[EDIT_TELEMETRY_SHOW_STATUS_BAR]: {

0 commit comments

Comments
 (0)