vim integration changing panels

Answered

So I am trying out the IDE and I'm coming from VIM, I understand that in the root I can put my remappings in the `.ideavimrc` which I have and for the most part working great. However, what I am trying to do is to move panels without having to use my mouse. So for example I am trying to move from the right panel (where one writes code) to the tree viewer on the left. Currently in vim I am using NERDTree and have in my `init.vim`
```
" maps split navigation
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
```

the above remappings will allows me to hold control while more pressing L or K or J or H and move around various panes. Those do not allow me in Goland to navigate the same as in vim. Does anyone know a solution to this to have the same result?

0
1 comment
Hi,

These mapping also work in the IDE with IdeaVIM,but it can only be used to switch between the split editor windows. It can't switch to NERDTree or any other Tool windows in IDEA. 
To use the NERDTree, you need to refer to the guide here https://github.com/JetBrains/ideavim/wiki/NERDTree-support to run a `NERDTreeToggle` command to switch the the NERDTree and use it.
0

Please sign in to leave a comment.