Show Menu
Cheatography

Vim - Navigation (Basics) Keyboard Shortcuts (DRAFT) by

Vim navigation basics.

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

Character

f<c­har>
= jump to next occurence of
<ch­ar>
t<c­har>
= jump to character before next occurence of
<ch­ar>
F<c­har>
= jump to prev occurence of
<ch­ar>
T<c­har>
= jump to character after prev occurence of
<ch­ar>
,
= go to next occurrence of
<ch­ar>
;
= go to previous occurrence of
<ch­ar>

Basics

h
= left
j
= down
k
= up
l
= right
0
= jump to start of line
$
= jump to end of line
-
= jump to start of line above
+
= jump to start of line below

Character

f<c­har>
= jump to next occurence of
<ch­ar>
t<c­har>
= jump to character before next occurence of
<ch­ar>
F<c­har>
= jump to prev occurence of
<ch­ar>
T<c­har>
= jump to character after prev occurence of
<ch­ar>
 

Text

w
= start of next word
b
= start of prev word
e
= end of next word
ge
= end of prev word
W
= start of next blank-­sep­arated word
B
= start of prev blank-­sep­arated word
E
= end of next blank-­sep­arated word
gE
= end of prev blank-­sep­arated word