Skip to content

Commit

Permalink
Increasing the default accessibility page size to 500 (#235798)
Browse files Browse the repository at this point in the history
increasing the default accessibility page size to 500
  • Loading branch information
aiday-mar authored Dec 11, 2024
1 parent 679a9f1 commit ae17627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/editor/common/config/editorOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5553,7 +5553,7 @@ export const EditorOptions = {
}
)),
accessibilitySupport: register(new EditorAccessibilitySupport()),
accessibilityPageSize: register(new EditorIntOption(EditorOption.accessibilityPageSize, 'accessibilityPageSize', 10, 1, Constants.MAX_SAFE_SMALL_INTEGER,
accessibilityPageSize: register(new EditorIntOption(EditorOption.accessibilityPageSize, 'accessibilityPageSize', 500, 1, Constants.MAX_SAFE_SMALL_INTEGER,
{
description: nls.localize('accessibilityPageSize', "Controls the number of lines in the editor that can be read out by a screen reader at once. When we detect a screen reader we automatically set the default to be 500. Warning: this has a performance implication for numbers larger than the default."),
tags: ['accessibility']
Expand Down

0 comments on commit ae17627

Please sign in to comment.