问题
I would really like to be able to use IdeaVIM but I am unable to figure out where I can set my custom vim key mappings. For example instead of using Esc I would like to use Ctrl-C and instead of using hjkl I like to use wasd.
I have all these already set in my .vimrc
but IdeaVIM failed to load them. I can copy them over manually to whatever file is needed but there is no documentation on how to do this.
回答1:
I've done this myself, and its pretty easy in IntelliJ 11. I know that in previous versions (9, maybe?) setting up keymap values is significantly different.
In IntelliJ 11 you can do the following:
- Go to
Settings
- Select
Keymap
from the left menu - Search for
Exit Insert Mode
on the right side and associate whatever key you want to use, such as CTRL-C
回答2:
As of IdeaVim 0.35 (released 2014-05-15), key mappings in ~/.ideavimrc
are supported. You can put source ~/.vimrc
in that file if you want to include mappings from ~/.vimrc
.
Release announcement
VIM-288
(Note: This question could probably be considered a duplicate of this other StackOverflow question.)
回答3:
IntelliJ 12.1:
- Go to
Settings
- Select
Keymap
from the left menu - Find
Escape
under theEditor Actions
section and add the Ctrl-C shortcut there. ("Escape" under the "IdeaVim" section didn't work for me)
Following the same steps, but replacing "Escape" with "Exit Insert Mode" only partially worked for me. It exited insert mode correctly but ignored the following keystroke. So typing Ctrl-C,j,j would exit insert but only go up one line instead of two.
来源:https://stackoverflow.com/questions/10149187/intellij-ideavim-change-keys