Table of Contents

Vi

Sample

sudo apt-get install vim

Cursor Movement

w		: Word Forward
b		: Word Backword
{		: Paragraph Beginning
}		: Paragraph End
^		: Line Beginning
$		: Line End

Editing

dd		: Delete Line
3d		: Delete 3 Lines
yy		: Copy Line
3yy		: Copy 3 Lines
p		: Paste
u		: Undo

References

https://ss64.com/vi.html