You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, it appears that the detection of IME preedit is based on word boundaries. This does not work if characters such as ; are used as part of the input method (for example, some shuangpin schemes). It would be better to detect whether the IME is active by using the compositionstart and compositionend events so that error detection does not fire between these two events.
The text was updated successfully, but these errors were encountered:
PS. In addition to the semicolon, the schema I use (三码郑码) also uses the underscore _ in its preedit to represent spaces, and many rime schemas show additional information in the preedit, so I believe a proper fix is necessary, rather than just adding _ and ; to the list of ignored characters.
At the moment, it appears that the detection of IME preedit is based on word boundaries. This does not work if characters such as
;
are used as part of the input method (for example, some shuangpin schemes). It would be better to detect whether the IME is active by using thecompositionstart
andcompositionend
events so that error detection does not fire between these two events.The text was updated successfully, but these errors were encountered: