I use the following vimrc configuration to navigate between panes:
" easier window 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>
This works fine with the exception when I'm in a :Explore
window to do some file exploration.
All bindings besides <C-l>
still work. But trying to navigate to the right with <C-l>
stops working. I than have to use <C-W><C-l>
to get out of the pane.
What do I possible have to add or deactivate to make this work?