Paul Gorman's Vim cheatsheet (You might also want to peruse my .vimrc at paulgorman.org)

Move to . . .

Edit . . .

Bookmarks

Cut . . .

Copy & paste

Files

Macros

Visual mode

Buffers, views, tabs

Options

Miscellaneous

Use the normal command in Ex mode to execute the macro on multiple/all lines:

Execute the macro stored in register a on lines 5 through 10.

:5,10norm! @a

Execute the macro stored in register a on all lines.

:%norm! @a