Using search highlighting can allow you to MUCH more quickly scan and grok code. It's so useful that it's worth knowing about all the tiny variants-on-the-theme:
Use :hi to list all available {group} colors. Example call:
:match ErrorMsg /foobar/
^^ {group}
:call clearmatches()
:call matchadd('Search', '^ERROR.*')
^^ {group}
" <leader>l = lock in the current-search pattern
" <leader>L = clear all locked-in search patterns
nnoremap <leader>l :call matchadd('Visual', @/)<cr>
nnoremap <leader>L :call clearmatches()<cr>