提交 b6041fbc 编写于 作者: A Alex Dima

Fixes #27613: symbolic key code names should always get the info message...

Fixes #27613: symbolic key code names should always get the info message explaining what characters they produce
上级 388f4ff3
......@@ -236,6 +236,9 @@ export class KeybindingEditorDecorationsRenderer extends Disposable {
if (!resolvedKeybinding.isWYSIWYG()) {
return this._createDecoration(false, resolvedKeybinding.getLabel(), model, value);
}
if (/abnt_|oem_/.test(value.value)) {
return this._createDecoration(false, resolvedKeybinding.getLabel(), model, value);
}
const expectedUserSettingsLabel = resolvedKeybinding.getUserSettingsLabel();
if (!KeybindingEditorDecorationsRenderer._userSettingsFuzzyEquals(value.value, expectedUserSettingsLabel)) {
return this._createDecoration(false, resolvedKeybinding.getLabel(), model, value);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册