Vim: Move left at the beginning of a line should go to above line
Solution 1:
:set ww+=<,>
should make the left and right movement wrap to previous/next line. :help whichwrap
for more information.
:set ww+=<,>
should make the left and right movement wrap to previous/next line. :help whichwrap
for more information.