Skip to content

Commit

Permalink
Turn edit context on, both on insiders and on stable - fix CI smoke t…
Browse files Browse the repository at this point in the history
…ests (microsoft#234197)

turning edit context on both on insiders and on stable - fix CI smoke tests
  • Loading branch information
aiday-mar authored Nov 19, 2024
1 parent a24a32f commit 1a5b235
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/vs/editor/common/config/editorOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { USUAL_WORD_SEPARATORS } from '../core/wordHelper.js';
import * as nls from '../../../nls.js';
import { AccessibilitySupport } from '../../../platform/accessibility/common/accessibility.js';
import { IConfigurationPropertySchema } from '../../../platform/configuration/common/configurationRegistry.js';
import product from '../../../platform/product/common/product.js';

//#region typed options

Expand Down Expand Up @@ -5750,7 +5749,7 @@ export const EditorOptions = {
emptySelectionClipboard: register(new EditorEmptySelectionClipboard()),
dropIntoEditor: register(new EditorDropIntoEditor()),
experimentalEditContextEnabled: register(new EditorBooleanOption(
EditorOption.experimentalEditContextEnabled, 'experimentalEditContextEnabled', product.quality !== 'stable',
EditorOption.experimentalEditContextEnabled, 'experimentalEditContextEnabled', true,
{
description: nls.localize('experimentalEditContextEnabled', "Sets whether the new experimental edit context should be used instead of the text area."),
included: platform.isChrome || platform.isEdge || platform.isNative
Expand Down

0 comments on commit 1a5b235

Please sign in to comment.