Skip to content

Commit 2072484

Browse files
Fix Ctrl+[arrow keys] in Firefox. (#3505)
1 parent 8de0c08 commit 2072484

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.changeset/sandbox-firefox.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@typescript/sandbox": patch
3+
---
4+
5+
Fix Ctrl+arrow keys in Firefox.

packages/sandbox/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const sharedEditorOptions: import("monaco-editor").editor.IEditorOptions = {
7777
},
7878
acceptSuggestionOnCommitCharacter: !isAndroid,
7979
acceptSuggestionOnEnter: !isAndroid ? "on" : "off",
80-
accessibilitySupport: !isAndroid ? "on" : "off",
80+
accessibilitySupport: !isAndroid ? "auto" : "off",
8181
inlayHints: {
8282
enabled: true,
8383
},

0 commit comments

Comments
 (0)