I want to delete the first column of a text file using vim. I read these SO answers where visual mode is used, but they only delete the first character (as for the answers using patters, I don't understand them so I have trouble adapting them to my situation).
My file contains many numbers and I want to delete the numbers in the first column, not just the first element.
eg
12 34 43143 1
131234 1
1 3443 132
I would like to have
34 43143 1
1
3443 132
but currently, I get
2 34 43143 1
31234 1
3443 132
The numbers are separated by tabs if it matters