We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c0a794 + 50941ef commit dfcaefaCopy full SHA for dfcaefa
src/vs/workbench/contrib/accessibility/browser/accessibleView.ts
@@ -105,10 +105,11 @@ class AccessibleView extends Disposable {
105
}
106
container.appendChild(this._editorContainer);
107
this._layout();
108
- this._register(this._editorWidget.onKeyDown((e) => {
+ this._register(this._editorWidget.onKeyUp((e) => {
109
if (e.keyCode === KeyCode.Escape) {
110
this._contextViewService.hideContextView();
111
112
+ e.stopPropagation();
113
provider.onKeyDown?.(e);
114
}));
115
this._register(this._editorWidget.onDidBlurEditorText(() => this._contextViewService.hideContextView()));
0 commit comments