Skip to content

Commit

Permalink
chore: disable editor accessibilitySupport by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaaaash committed Oct 18, 2022
1 parent fd9f031 commit 45e1db4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/editor/src/browser/preference/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1571,7 +1571,10 @@ const monacoEditorSchema: PreferenceSchemaProperties = {
'editor.comments.insertSpace': {
type: 'boolean',
default: true,
description: localize('insertSpace', 'Insert a space after the line comment token and inside the block comments tokens.'),
description: localize(
'insertSpace',
'Insert a space after the line comment token and inside the block comments tokens.',
),
},
'editor.comments.ignoreEmptyLines': {
type: 'boolean',
Expand Down Expand Up @@ -1821,7 +1824,7 @@ const customEditorSchema: PreferenceSchemaProperties = {
"Semantic highlighting is configured by the current color theme's `semanticHighlighting` setting.",
),
],
default: true,
default: false,
description: localize(
'semanticHighlighting.enabled',
'Controls whether the semanticHighlighting is shown for the languages that support it.',
Expand Down

0 comments on commit 45e1db4

Please sign in to comment.