Can you please add a settings to change input method like VSCodeVim?
Does something like this work for you? (put into your init.vim, you need im-select binary if you're on win/mac)
autocmd InsertEnter * :!/usr/local/bin/im-select com.apple.keylayout.US
Does something like this work for you? (put into your init.vim, you need im-select binary if you're on win/mac)
autocmd InsertEnter :!/usr/local/bin/im-select com.apple.keylayout.US
I tried this in windows10, but not work.
autocmd InsertEnter :!notepad
=========================
It must add a * after InsertEnter
finally this works:
autocmd InsertLeave * :!im-select 1033
@transtone @asvetliakov when I leave insert mode, it will automatically jump to neovim output pane instead of staying in editor, how could i solve this problem?

@Jackiexiao, could you try it with clear Neovim config?
Try
autocmd InsertLeave * :silent !C:\\....
Try
autocmd InsertLeave * :silent !C:\\....
Works! Thx!
Most helpful comment
Try
autocmd InsertLeave * :silent !C:\\....