Guest User

Untitled

a guest
Jan 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. *Note:* These apply to the Vim-Mode-Plus plugin for Atom and my custom keymaps. This is not a generic reference for Vim.
  2.  
  3. A "word" is an alphanumeric string. A "WORD" is any series of non-whitespace separated by whitespace.
  4.  
  5. - **a** Append after cursor/at end of line.
  6. - **b** Previous word/WORD ("backword").
  7. - **c** Change. 🔠 Change to end of line.
  8. - **d** Delete. 🔠 Delete to end of line.
  9. - **e** End of word.
  10. - **f**
  11. - **g** 🔠 Go.
  12. - **h** Move left.
  13. - **i** Insert before cursor/at beginning of line.
  14. - **j** Move down. 🔠 Join next line down to the end of the current line.
  15. - **k** Move up.
  16. - **l** Move right.
  17. - **m** Mark.
  18. - **n** Next. Repeat prior search forward/backward.
  19. - **o** Open line after/before cursor.
  20. - **p** Put after/before cursor.
  21. - **q**
  22. - **r** Replace one character. 🔠 Begin overstrike or replace mode.
  23. - **s** Substitute character/line.
  24. - **t**
  25. - **u** Undo. 🔠 Restore line.
  26. - **v** Start selecting. 🔠 Select current line.
  27. - **w** Beginning of next word/WORD.
  28. - **x** Delete one character.
  29. - **y** Yank (copy to buffer).
  30. - **z**
  31.  
  32. - **0** Beginning of line.
  33. - **$** End of line.
  34. - **.** Repeat last command.
  35. - **\*** Search word under cursor.
  36.  
  37. - **g t** Next/previous tab.
Add Comment
Please, Sign In to add comment