Skip to content

Instantly share code, notes, and snippets.

@jnwarp
Last active August 25, 2016 20:32
Show Gist options
  • Save jnwarp/a4f36f242273f98d4ad46ae28d88dda6 to your computer and use it in GitHub Desktop.
Save jnwarp/a4f36f242273f98d4ad46ae28d88dda6 to your computer and use it in GitHub Desktop.
VIM Cheat Sheet

VIM Cheat Sheet:

esc -> select mode/exit
: -> command mode
i -> insert mode

Select Mode:

h -> left
l -> right

j -> down
k -> up

----------------------------------
|       |        |       |       |
|  < h  |  \/ j  |  ^ k  |  > l  |
| left  |  down  |  up   | right |
----------------------------------

d -> delete
  d -> line
  l -> letter
  w -> word

i -> insert
c -> change

o -> new line
O -> new line above

w -> next word
  n -> next found

Shift+V -> select text
  y -> copy
  x -> cut
  p -> paste below
  P -> paste above

Command Mode:

w -> write
q -> quit
saveas -> save file
! -> run command
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment