I am using the NERDTree and NERDTree tabs plugin. In order to move between tabs I found these shortcuts which work fine:
nnoremap tp :tabprev<CR>
nnoremap tn :tabnext<CR>
nnoremap tf :tabfirst<CR>
nnoremap tl :tablast<CR>
However, I also want ability to re-arrange tabs. Searching online, i found the following:
" useful mappings for managing tabs
map <leader>tn :tabnew<cr>
map <leader>to :tabonly<cr>
map <leader>tc :tabclose<cr>
map <leader>tm :tabmove
I have included the above in my .vimrc file but don't understand how to use them. What is mean ? How do I rearrange tabs using the above commands or are these commands useless ?