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

set alerts for inline signals to false by default #204445

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading