Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 570 Bytes

File metadata and controls

33 lines (19 loc) · 570 Bytes

Vim

Basics

h: move leftward (normal mode);

j: move downward (normal mode);

k: move upward (normal mode);

l: move rightward (normal mode);

0: move to the beginning of the line (normal mode);

$: move to the end of the line (normal mode);

w: move one word forward (normal mode);

b: move one word backward (normal mode);

G: move to the end of the file (normal mode);

gg: move to the beginning of the file (normal mode);


Plugins