How do I delete first word of each line in Vim?
How about a pattern on each line?
:%s,^[^ ]*,,
From the beginning of the line match anything, but not a space and replace with none.