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
If input is passed to vimInput one character at a time a multi-character keybind (for example inoremap jk <esc>) will fail. The first key will be swallowed up and the second will be inputted, without leaving insert mode.
Oni2 sends keystrokes one at a time to vimInput. Because of this, the above behavior is blocking implementing Spacemacs-like keybindings. I would like to see this fixed here or for some other solution for spooling keypress before sending to vimInput implemented on the Oni2 side.
The text was updated successfully, but these errors were encountered:
Describe the bug
If input is passed to
vimInput
one character at a time a multi-character keybind (for exampleinoremap jk <esc>
) will fail. The first key will be swallowed up and the second will be inputted, without leaving insert mode.To Reproduce
This test passes
whereas this test fails
Expected behavior
Oni2 sends keystrokes one at a time to
vimInput
. Because of this, the above behavior is blocking implementing Spacemacs-like keybindings. I would like to see this fixed here or for some other solution for spooling keypress before sending tovimInput
implemented on the Oni2 side.The text was updated successfully, but these errors were encountered: