Ctrl-x and Ctrl-z navigate the quickfix list

This commit is contained in:
yan 2015-09-08 13:10:26 -05:00
parent ef991c744b
commit cf6bb61336

View File

@ -156,3 +156,8 @@ map ,hi :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<'
" ,hp = html preview " ,hp = html preview
map <silent> ,hp :!open -a Safari %<CR><CR> map <silent> ,hp :!open -a Safari %<CR><CR>
" Map Ctrl-x and Ctrl-z to navigate the quickfix error list (normally :cn and
" :cp)
nnoremap <silent> <C-x> :cn<CR>
nnoremap <silent> <C-z> :cp<CR>