comparison vimperatorrc @ 150:71ff712a6951

Move tabs
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 22 Nov 2013 16:19:49 -0800
parents d94d6766fc9e
children 08c501149115 fad6de4a0252
comparison
equal deleted inserted replaced
149:1c3e3740325f 150:71ff712a6951
17 17
18 " Change tabs without awkward `CTRL` combinations 18 " Change tabs without awkward `CTRL` combinations
19 nnoremap J :tabprevious<cr> 19 nnoremap J :tabprevious<cr>
20 nnoremap K :tabnext<cr> 20 nnoremap K :tabnext<cr>
21 21
22 " Reorder tabs
23 nnoremap > :tabmove +1<cr>
24 nnoremap < :tabmove -1<cr>
25
22 "New tab using the old classic way 26 "New tab using the old classic way
23 nnoremap <C-t> :tabnew<cr> 27 nnoremap <C-t> :tabnew<cr>
24 28
25 " Use `i` to get into a persistent insert mode, 29 " Use `i` to get into a persistent insert mode,
26 " and `I` for the quick one. 30 " and `I` for the quick one.