Skip to content

Commit

Permalink
AccessibilityManager's handleKey is triggered by onData, not onKey
Browse files Browse the repository at this point in the history
  • Loading branch information
ikicha authored Nov 20, 2024
1 parent 41e8ae3 commit 076b0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/AccessibilityManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class AccessibilityManager extends Disposable {
this._register(this._terminal.onA11yChar(char => this._handleChar(char)));
this._register(this._terminal.onLineFeed(() => this._handleChar('\n')));
this._register(this._terminal.onA11yTab(spaceCount => this._handleTab(spaceCount)));
this._register(this._terminal.onKey(e => this._handleKey(e.key)));
this._register(this._terminal.onData(e => this._handleKey(e)));
this._register(this._terminal.onBlur(() => this._clearLiveRegion()));
this._register(this._renderService.onDimensionsChange(() => this._refreshRowsDimensions()));
this._register(addDisposableListener(doc, 'selectionchange', () => this._handleSelectionChange()));
Expand Down

0 comments on commit 076b0ef

Please sign in to comment.