Use plugin vim-multiple-cursors.
Install this plugin with adding Plugin 'terryma/vim-multiple-cursors'
into .vimrc.
The default key mappings is C-n for start multiple cursors and move to next,
C-p for previous, C-x to skip, and C-i
:
nnoremap <C-i> :NERDTreeTabsToggle<CR>
Note:
Do not map 'next/previous' to C-j/k as follows:
" multiple cursors configs
let g:multi_cursor_next_key='<C-j>'
let g:multi_cursor_prev_key='<C-k>'
for C-j/k is mapped to keys jumping between windows.