Skip to content

Instantly share code, notes, and snippets.

@urban
Last active August 29, 2015 14:22
Show Gist options
  • Save urban/4ed72ecb78deae945ad5 to your computer and use it in GitHub Desktop.
Save urban/4ed72ecb78deae945ad5 to your computer and use it in GitHub Desktop.

Vim basics:

  • How to switch from command mode to insert mode i
  • How to switch from insert mode to command mode Esc
  • How to navigate up a line in command mode k
  • How to navigate down a line in command mode j
  • How to navigate left a character in command mode h
  • How to navigate right a character l
  • How to search for any string / (write) Enter
  • How to save a file :wEnter (write)
  • How to exit without saving (in command mode) :q!Enter
  • How to Undo u
  • How to Redo Ctrl+r
  • You can combine writing and quitting (in command mode): :wqEnter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment