提交 850c0301 编写于 作者: J Joao Moreno

fixes #64805

上级 ca773cb3
......@@ -345,6 +345,7 @@ class TypeLabelController<T> implements IDisposable {
private keyboardNavigationLabelProvider: IKeyboardNavigationLabelProvider<T>
) {
const onChar = Event.chain(domEvent(view.domNode, 'keydown'))
.filter(e => !isInputElement(e.target as HTMLElement))
.map(event => new StandardKeyboardEvent(event))
.filter(keyboardNavigationLabelProvider.mightProducePrintableCharacter ? e => keyboardNavigationLabelProvider.mightProducePrintableCharacter!(e) : e => TypeLabelController.mightProducePrintableCharacter(e))
.map(event => event.browserEvent.key)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册