0

I use Ctrl+k for exiting Insert mode. So, I did the key mapping on IntelliJ. enter image description here

it seems work well. But, something is wrong.

When I type Ctrl+k, it looks exited insert mode. but after the input ctrl+k, next input is not recognize.

it's difficult to explain for my poor English. so please try setting Ctrl+k as a Exit Insert Mode, and check the behavior.

thank you for your help.

4

1 回答 1

0

You should configure alternative shortcuts for the Vim emulation keys as Vim key mappings as in the original Vim. See the Vim help for :map commands. You can put those mapping into your ~/.ideavimrc.

A small example:

inoremap <C-K> <Esc>

Configuring them via "File | Settings | Keymap" is not supported.

于 2015-11-07T22:33:11.083 回答