25 Tips to Move Around in Vim

  1. h Move left
  2. j Move down
  3. k Move up
  4. l Move right
  5. w Move to next word
  6. W Move to next blank delimited word
  7. b Move to the beginning of the word
  8. B Move to the beginning of blank delimited word
  9. e Move to the end of the word
  10. E Move to the end of blank delimited word
  11. 0 Move to the beginning of the line
  12. $ Move to the end of the line
  13. 1G Move to the first line of the file
  14. G Move to the last line of the file
  15. nG Move to nth line of the file
  16. :n Move to nth line of the file
  17. fc Move forward to c
  18. Fc Move back to c
  19. H Move to top of screen
  20. M Move to middle of screen
  21. L Move to bottom of screen
  22. ( Move a sentence back
  23. ) Move a sentence forward
  24. { Move a paragraph back
  25. } Move a paragraph forward