We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10295b5 commit 7f329feCopy full SHA for 7f329fe
src/vs/workbench/browser/actions/developerActions.ts
@@ -238,8 +238,7 @@ class ToggleScreencastModeAction extends Action2 {
238
}));
239
240
disposables.add(onKeyDown.event(e => {
241
- // allow-any-unicode-next-line
242
- if (e.key === 'Process' || /[가-힇ㄱ-ㅎㅏ-ㅣぁ-ゔァ-ヴー々〆〤一-龥]/.test(e.key)) {
+ if (e.key === 'Process' || /[\uac00-\ud787\u3131-\u314e\u314f-\u3163\u3041-\u3094\u30a1-\u30f4\u30fc\u3005\u3006\u3024\u4e00-\u9fa5]/u.test(e.key)) {
243
if (e.code === 'Backspace') {
244
imeBackSpace = true;
245
} else if (!e.code.includes('Key')) {
0 commit comments