Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 665 Bytes

File metadata and controls

13 lines (11 loc) · 665 Bytes

Basic Editing

  • x will delete the character right under your cursor.
  • u will undo your changes.
  • dw will delete a whole word.
  • db will delete the word in front of it.
  • cw will put you in insert mode and delete the word under it.
  • dd will delete the entire line.
  • cc will delete the entire line and put you in insert mode.
  • ct" will delete everything inside (until the next double quote) "double quotes" and put it insert mode. " could be replaced with any other character for the intended effect.
  • ci{ will delete everything around it in {curly braces}.
  • ca{ will delete everything inside it in {curly braces}.