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
In case of using a keyboard layout with dead keys, e.g. the russian mnemonic keyboard, input in normal mode might be treated like input in insert mode.
On the mnemonic Russian keyboard, pressing the dead key j twice (which corresponds to "йй") results in "йй" being inserted. It would be expected for the cursor to move down twice instead.
One of the two things could be done:
Research if it's possible to handle dead keys as normal keypresses (dubitable)
Remove the limitation of input length for normal mode as described here (Supposedly that can interfere with Japanese IME and spellcheck, I'm not yet sure how to reproduce a possible bug.)
The text was updated successfully, but these errors were encountered:
Trying the mnemonic russian layout in the provided example does indeed print a character code for each distinct keypress.
It might make sense to break those keypresses up into singular keys in normal mode. I'm unsure how viable this is in the scope of codemirror-vim though. Perhaps I'd need to go upstream with this request.
In case of using a keyboard layout with dead keys, e.g. the russian mnemonic keyboard, input in normal mode might be treated like input in insert mode.
On the mnemonic Russian keyboard, pressing the dead key
j
twice (which corresponds to "йй") results in "йй" being inserted. It would be expected for the cursor to move down twice instead.One of the two things could be done:
The text was updated successfully, but these errors were encountered: