Which modes does Vim have?
Vim has 3 modes:
Normal mode
Insert mode
Visual mode
Which navigation keys does Vim have?
h - move left
j - move down
k - mode up
l - move right
How to flip pages?
f - forward
b - backword
How to get into insert mode?
i or a
How to get out of insert mode?
Esc
How to delete the buffer?
u
How to get into visual mode?
v
How to select a portion of text?
In visual mode, use navigation keys
How to delete a portion?
d
How to append text?
a
How to get into the command palette?
:
How to ident a line?
<< and >>
How to copy portion?
y
How to paste a portion?
p
How to replace one character?
r (in normal mode)