Vscode-neovim: input method settings

Created on 1 Dec 2019  路  6Comments  路  Source: asvetliakov/vscode-neovim

Can you please add a settings to change input method like VSCodeVim?

https://github.com/VSCodeVim/Vim#input-method

question

Most helpful comment

Try
autocmd InsertLeave * :silent !C:\\....

All 6 comments

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?
image

@Jackiexiao, could you try it with clear Neovim config?

Try
autocmd InsertLeave * :silent !C:\\....

Try
autocmd InsertLeave * :silent !C:\\....

Works! Thx!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

DrakeXiang picture DrakeXiang  路  4Comments

DrakeXiang picture DrakeXiang  路  3Comments

Liquidmantis picture Liquidmantis  路  3Comments

erlais picture erlais  路  3Comments

bogdan0083 picture bogdan0083  路  4Comments