Skip to content

Commit a8971a9

Browse files
authored
Merge pull request microsoft#204504 from microsoft/merogge/disable--alert-line
set inline alerts to `false` by default
2 parents f850628 + 99a2f46 commit a8971a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,19 +167,19 @@ const configuration: IConfigurationNode = {
167167
[AccessibilityAlertSettingId.Error]: {
168168
'markdownDescription': localize('alert.error', "Alerts when the active line has an error. Also see {0}.", '`#audioCues.lineHasError#`'),
169169
'type': 'boolean',
170-
'default': true,
170+
'default': false,
171171
tags: ['accessibility']
172172
},
173173
[AccessibilityAlertSettingId.Warning]: {
174174
'markdownDescription': localize('alert.warning', "Alerts when the active line has a warning. Also see {0}.", '`#audioCues.lineHasWarning#`'),
175175
'type': 'boolean',
176-
'default': true,
176+
'default': false,
177177
tags: ['accessibility']
178178
},
179179
[AccessibilityAlertSettingId.FoldedArea]: {
180180
'markdownDescription': localize('alert.foldedArea', "Alerts when the active line has a folded area that can be unfolded. Also see {0}.", '`#audioCues.lineHasFoldedArea#`'),
181181
'type': 'boolean',
182-
'default': true,
182+
'default': false,
183183
tags: ['accessibility']
184184
},
185185
[AccessibilityAlertSettingId.TerminalQuickFix]: {
@@ -233,7 +233,7 @@ const configuration: IConfigurationNode = {
233233
[AccessibilityAlertSettingId.LineHasBreakpoint]: {
234234
'markdownDescription': localize('alert.lineHasBreakpoint', "Alerts when on a line with a breakpoint. Also see {0}.", '`#audioCues.lineHasBreakpoint#`'),
235235
'type': 'boolean',
236-
'default': true,
236+
'default': false,
237237
tags: ['accessibility']
238238
},
239239
[AccessibilityAlertSettingId.NotebookCellCompleted]: {

0 commit comments

Comments
 (0)