Reputation: 12752
In VIM, I have the space bar mapped with the fold/unfold command when not in insert mode.
If it is possible, how can I replicate that in Android Studio with the IdeaVim plugin ?
Upvotes: 2
Views: 871
Reputation: 868
If you are using Windows, just copy your _vimrc file from your Vim into your $HOME path (usually it is C:/Users/USER_NAME/) and rename it to .ideavimrc. Then restart Android Studio, and you can get all your keymap setting back.
Upvotes: 0
Reputation: 7847
Put source ~/.vimrc
in your ~/.ideavimrc
to source your vim settings. Or just copy over the mappings you care about.
Upvotes: 2