G and gg
G let the cursor go to the last line, while gg let the cursor go
the first line of the whole file.
zz and z<enter>
It is used to adjust view. Put the cursor at the line you want to scroll to the
center: type: zz
to the top: type: z<enter>
ge
It can move backward to the end character of each word.
gd
Find the local definition part of the variable or function at the current
cursor. Use " or `` to jump back.
gD
Find the global definition part of the variable or function at the current cursor.
``
Jump back to the character position where last absolute jump occurred
''
Jump back to the start of the line where last absolute jump occurred
C-w h moves split to the left of current split
C-w j moves split below the current split
C-w k moves split above the current split
C-w l moves split to the right of the current split
C-w + increase the current split by one line (or, prefix this
command with a number to do that many line increases)
C-w - decrease the current split by one line (same addendum as above)
C-w < decrease the current split width
C-w > increase the current split width
C-w _ Maximize the current split
0 and ^
0 move the cursor to the first character of the line, while ^
move the cursor to the first
Tony Han 2011-06-16