Goto:

: => line mode, operates on current line unless specific line numbers are specified

^ or 0 ==> beginning of line
$ ==> end of line

:0==>beginning of file
G ==> end of file

nG ==> go to line n
:n ==> go to line n

Return ==> first non-blank char

H ==> top line on screen
L ==> last line on screen
M ==> middle of screen
Ctrl+L ==> Redraw screen??
b              beginning of previous word              
w              beginning of next word                  
e              end of current/next word                
0 (zero) or ^  beginning of line                       
$              end of line                             
(              beginning of current/previous sentence  
)              beginning of next sentence              
{              beginning of current/previous paragraph 
}              end of current paragraph                
H              top line on screen                      
M              middle line on screen                   
L              bottom line on screen