On Fri, 21 Apr 2006 10:05:18 +0200 "Nikolai Weibull" <[EMAIL PROTECTED]> wrote:
> How do you define the region to be from the current line to the last > line? You can't press G. All you can give is a number prefix. Or > perhaps there's some command I've missed? G works here, VG:delete<enter> deletes everything from the current line down to and including the last line of the file. Is VG: good enough for what you want? Also, you can type it manually: : 3,$ <command> will run the command for every line starting from 3 down.. or: : .,$ <command> For every line from the current line to the last inclusive. Sean