Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. ## Movement
  2. w - Moves to start next word.
  3. e - Moves to end of the word.
  4. b - Moves to previous of the word.
  5. 0 - Jump to beginning of the line.
  6. $ - Jump to end of the line.
  7. % - Jump to start or end { ( [.
  8. gg - Beginning of the file.
  9. G - Ending of the file.
  10. 2G - Jump to line numbers.
  11.  
  12. ## Find
  13. f - Finding a word. Ex: 3fu (Finding a u word at No3).
  14. * - Finding next word under cursor.
  15. # - Finding previous word under cursor.
  16. / - Search a text. n N for jump to next and previous occurrences.
  17.  
  18. ## Insert
  19. o - Insert a new line down.
  20. O - Insert a new line up.
  21.  
  22. ## Deleting, Replace
  23. x, x - Delete a character under the cursor.
  24. r - Replace a one character.
  25. d - Deleting, combine it with movement. Ex: dw, de - delete a word, d2e - delete two next word.
  26.  
  27. ## Other
  28. . - Repeat command.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement