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.
1 parent 4558410 commit 50941efCopy full SHA for 50941ef
src/vs/workbench/contrib/accessibility/browser/accessibleView.ts
@@ -98,10 +98,11 @@ class AccessibleView extends Disposable {
98
}
99
container.appendChild(domNode);
100
this._layout();
101
- this._register(this._editorWidget.onKeyDown((e) => {
+ this._register(this._editorWidget.onKeyUp((e) => {
102
if (e.keyCode === KeyCode.Escape) {
103
this._contextViewService.hideContextView();
104
105
+ e.stopPropagation();
106
provider.onKeyDown?.(e);
107
}));
108
this._register(this._editorWidget.onDidBlurEditorText(() => this._contextViewService.hideContextView()));
0 commit comments