ma
move cursor down
:'a,.!program
This will take all text between where you set the a mark (ma) to the current line (.), run it through program, and replace the contents of the marked region with the results. You can even use it to see the contents of a directory (for example) by making a blank line, then with cursor sitting on that line,
:.!ls
Oh, and you can set marks like this for a-z (i.e. ma), and
'a
will jump you to the position you marked as "a."
/ searches forward, and ? repeats search backwards without having to resupply search pattern.
Groovy stuff. vi is highly underrated. Once you get the hang of it, you won't ever want to use the IDE supplied editors.