I like switching my focus back and forth between the NERDTREE pane and a file and the command Ctrl-ww accomplishes this. I'd like to map this to <Leader>w but variations of map <Leader>w <C-ww><CR> in my .vimrc are not working for me. Any thoughts on how to accomplish this mapping?

link|improve this question

56% accept rate
feedback

1 Answer

up vote 7 down vote accepted

It's not <C-ww>, it's <C-w>w or <C-w><C-w>.

That's either Ctrl+w then w or Ctrl+w then Ctrl+w.

So your mapping should be nnoremap <Leader>w <C-w>w or nnoremap <Leader>w <C-w><C-w>.

Note that you can use <C-w>p to move to the previous window and effectively toggle between NERDTree and your active window.

See :help window for more infos on windows in Vim.

link|improve this answer
great, thank you! – Matt Ball Oct 6 '11 at 17:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.