diff options
-rw-r--r-- | vimrc | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -157,6 +157,10 @@ " * Set `cursorline` to highlight the current line. Shame it doesn't " play nice with soft wrapping but I'm going to try it out for now. " +" 2014.05.26: +" * Add :cnext and :cprevious mappings for easier navigation in the +" quickfix window. Key pairs taken from Tim Pope's unimpaired.vim. +" " Pathogen @@ -432,6 +436,11 @@ nnoremap <leader>/ :nohlsearch<cr> " Tabs nnoremap <leader>tn :tabnew<cr> +" Quickfix +nnoremap ]q :cnext<cr> +nnoremap [q :cprevious<cr> + + " Commands " ======== |