From ae176274ac92eb4c0bfb93343eca18e4ebb46ea7 Mon Sep 17 00:00:00 2001 From: Aiday Marlen Kyzy Date: Wed, 11 Dec 2024 09:49:45 +0100 Subject: [PATCH] Increasing the default accessibility page size to 500 (#235798) increasing the default accessibility page size to 500 --- src/vs/editor/common/config/editorOptions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/common/config/editorOptions.ts b/src/vs/editor/common/config/editorOptions.ts index a1c426990692f..3fca8a3fc7b9a 100644 --- a/src/vs/editor/common/config/editorOptions.ts +++ b/src/vs/editor/common/config/editorOptions.ts @@ -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']