Skip to content

Instantly share code, notes, and snippets.

@aimtiaz11
Last active March 13, 2018 01:54
Show Gist options
  • Select an option

  • Save aimtiaz11/9428fc1d6f21f88a77d793decb2ccf2c to your computer and use it in GitHub Desktop.

Select an option

Save aimtiaz11/9428fc1d6f21f88a77d793decb2ccf2c to your computer and use it in GitHub Desktop.
Vim Cheatsheet

Vim Cheatsheet

Cursor Position

File

  1. Move cursor to end of file: :$
  2. Move cursor to beginning of file: gg

Line

  1. Move cursor to end of line: $
  2. Move cursor to beginning of current line: 0

Deleting Line

  1. Delete from current position to end of line: d$
  2. Delete from current position to beginning of line: d^

Deleting Word

  1. Delete from current position to end of word: dw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment