Vim: Skip quickfix buffer when cycling through windows
You need to override the command with a custom mapping in which you check for the quickfix window, and then just jump again:
:nnoremap <silent> <C-w><C-w> <C-w><C-w>:if &buftype ==# 'quickfix'<Bar>wincmd w<Bar>endif<CR>