Skip to content

Commit

Permalink
Merge pull request #204504 from microsoft/merogge/disable--alert-line
Browse files Browse the repository at this point in the history
set inline alerts to `false` by default
  • Loading branch information
meganrogge authored Feb 6, 2024
2 parents f850628 + 99a2f46 commit a8971a9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,19 +167,19 @@ const configuration: IConfigurationNode = {
[AccessibilityAlertSettingId.Error]: {
'markdownDescription': localize('alert.error', "Alerts when the active line has an error. Also see {0}.", '`#audioCues.lineHasError#`'),
'type': 'boolean',
'default': true,
'default': false,
tags: ['accessibility']
},
[AccessibilityAlertSettingId.Warning]: {
'markdownDescription': localize('alert.warning', "Alerts when the active line has a warning. Also see {0}.", '`#audioCues.lineHasWarning#`'),
'type': 'boolean',
'default': true,
'default': false,
tags: ['accessibility']
},
[AccessibilityAlertSettingId.FoldedArea]: {
'markdownDescription': localize('alert.foldedArea', "Alerts when the active line has a folded area that can be unfolded. Also see {0}.", '`#audioCues.lineHasFoldedArea#`'),
'type': 'boolean',
'default': true,
'default': false,
tags: ['accessibility']
},
[AccessibilityAlertSettingId.TerminalQuickFix]: {
Expand Down Expand Up @@ -233,7 +233,7 @@ const configuration: IConfigurationNode = {
[AccessibilityAlertSettingId.LineHasBreakpoint]: {
'markdownDescription': localize('alert.lineHasBreakpoint', "Alerts when on a line with a breakpoint. Also see {0}.", '`#audioCues.lineHasBreakpoint#`'),
'type': 'boolean',
'default': true,
'default': false,
tags: ['accessibility']
},
[AccessibilityAlertSettingId.NotebookCellCompleted]: {
Expand Down

0 comments on commit a8971a9

Please sign in to comment.