Show Menu
Cheatography

Vim Cheat Sheet (DRAFT) by [deleted]

Vim Cheat Sheet

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Basic movement

h
Move
j
Move
k
Move
l
Move
Words are separated only by spaces and symbols are considered part of the words.

Word movement

w
Go to the next word
W
Go to the next word ()
b
Go back to the start of the word
B
Go back to the start of the word ()
e
Go to end of the word
E
Go to end of the word ()
Words are separated only by spaces and symbols are considered part of the words.

Line movement

0
Go to the start of the line
^
Go to the start of the line ()
g_
Go the the end of the line
$
Go the the end of the line ()
Blank characters are not part of the line
   

Vim