I have a tab delimited file (one line). I can easily enough replace the tabs with new lines so that I can see what fields are in what position
:%s/\t/\r/g
How can I do the inverse, after I've edited the fields? I could record a macro:
Js<tab>Esc
And then repeat it all the way down - but is there an easier way?