processKeydown.ts 184 B

123456
  1. export const processKeydown = (vditor: IVditor, event: KeyboardEvent) => {
  2. vditor.ir.composingLock = event.isComposing;
  3. if (event.isComposing) {
  4. return false;
  5. }
  6. };