Iterating Quickfix with Vim-Unimpaired 🏁
Vim's quickfix buffer is a place I spend a lot of time. Iterating through it can be done in a couple of ways:
:cprevious
:cnext
:cfirst
:clast
Or shortened:
:cp
:cn
:cfir
:cla
vim-unimpaired has some nice mappings to help.
[q :cprevious
]q :cnext
[Q :cfirst
]Q :clast
With [q
and ]q
we're flying through those results.
h/t Dorian
Tweet