mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-16 13:21:04 +01:00
Disable autoClosingBrackets when screen reader is attached
This commit is contained in:
@@ -1715,7 +1715,7 @@ export class InternalEditorOptionsFactory {
|
||||
wordWrapBreakBeforeCharacters: opts.wordWrapBreakBeforeCharacters,
|
||||
wordWrapBreakAfterCharacters: opts.wordWrapBreakAfterCharacters,
|
||||
wordWrapBreakObtrusiveCharacters: opts.wordWrapBreakObtrusiveCharacters,
|
||||
autoClosingBrackets: opts.autoClosingBrackets,
|
||||
autoClosingBrackets: (accessibilityIsOn ? false : opts.autoClosingBrackets), // DISABLED WHEN SCREEN READER IS ATTACHED
|
||||
autoIndent: opts.autoIndent,
|
||||
dragAndDrop: opts.dragAndDrop,
|
||||
emptySelectionClipboard: opts.emptySelectionClipboard,
|
||||
|
||||
Reference in New Issue
Block a user