vimrc: cycle through quickfix list with ctrl+{n,p}

This commit is contained in:
Josh Holtrop 2011-06-09 17:18:46 -04:00
parent 8dcb6d06bf
commit 94aab2755c

2
vimrc
View File

@ -93,6 +93,8 @@ map ,C ggVGc
"nnoremap <silent> <F8> :TlistToggle<CR> "nnoremap <silent> <F8> :TlistToggle<CR>
" re-indent the following line how vim would automatically do it " re-indent the following line how vim would automatically do it
map ,j Ji  map ,j Ji 
map  :cn
map  :cp
" highlight characters past column 80 " highlight characters past column 80
map ,L :highlight TooLong guibg=lightyellow :match TooLong '\%>80v.*.$' map ,L :highlight TooLong guibg=lightyellow :match TooLong '\%>80v.*.$'