<Esc> Enter command mode
i Enter insert mode
R Enter overwrite mode
a Enter append mode
:w Save File
:q Exit vim without saving
x Delete the character under the cursor
dw Delete the current word
dd Delete the current line
d$ Delete everything Right of the cursor
yy Yank the current line onto the clipboard
yw Yank the current word onto the clipboard
p Paste the clipboard
u Undo
^r Redo
G Jump to bottom of file
/text Search for the textfrom the cursor