dot-files/vim/.vim/after/ftplugin/qf.vim

10 lines
337 B
VimL
Raw Normal View History

if !exists("b:undo_ftplugin")
let b:undo_ftplugin=''
endif
" Use h/l to go to the previous/next non-empty quickfix or location list
nnoremap <silent> <buffer> h :call quickfixed#older()<CR>
let b:undo_ftplugin.='|nunmap <buffer> h'
nnoremap <silent> <buffer> l :call quickfixed#newer()<CR>
let b:undo_ftplugin.='|nunmap <buffer> l'