How do I delete first word of each line in Vim?
How about a pattern on each line?
First word (where word is defined as no whitespace)
:%s/^\s*[^ ]* //g
Delete pattern:
:%s/< insert pattern here >//g