> Is there any option in vim which reconfigures the behavior of > up/down buttons so that they move cursor on wrapped "virtual" > lines like on real lines?
While I don't believe there's an option per-se, it's very easy to use :nnoremap <up> gk :nnoremap <down> gj :vnoremap <up> gk :vnoremap <down> gj :inoremap <up> <c-o>gk :inoremap <down> <c-o>gj to map the desired effect. I've seen several folks on the list who have such mappings. HTH, -tim