[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): v2.20.7 #1815

Merged
merged 9 commits into from
Oct 21, 2022
Next Next commit
chore: disable editor accessibilitySupport by default (#1798)
  • Loading branch information
Aaaaash authored Oct 18, 2022
commit d5d771b5b281f457916dd4b70c00733518ea95e6
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 @@ -128,7 +128,7 @@ export const EDITOR_DEFAULTS = {
useTabStops: true,
multiCursorModifier: 'altKey',
multiCursorMergeOverlapping: true,
accessibilitySupport: 'auto',
accessibilitySupport: 'off',
showUnused: true,
wrappingStrategy: 'simple',

Expand Down 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