We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c7e862 commit 4f110a5Copy full SHA for 4f110a5
1 file changed
src/vs/editor/contrib/hover/hover.ts
@@ -101,6 +101,7 @@ export class ModesHoverController implements IEditorContribution {
101
this._toUnhook.add(this._editor.onDidChangeModelDecorations(() => this._onModelDecorationsChanged()));
102
} else {
103
this._toUnhook.add(this._editor.onMouseMove(hideWidgetsEventHandler));
104
+ this._toUnhook.add(this._editor.onKeyDown((e: IKeyboardEvent) => this._onKeyDown(e)));
105
}
106
107
this._toUnhook.add(this._editor.onMouseLeave(hideWidgetsEventHandler));
0 commit comments