vi one.txt two.txt three.txt
open Vim with one.txt, two.txt and three.txt queued
:ar
see files. current file will be in brackets ([ ])
:n
advance to next file in the queue
:rew
rewind queue back to the first file
:e filename.php
edit filename.php in a new buffer
V
# select lines to indent using j or k
=5>>V
# select lines to indent using j or k
3<ma
set a mark location named 'a'
`a
jump to mark location 'a'. note: ` is the backtick