vim - Convert file one word per line -
I would like to change a text file in which the word will be different from the place, where each word will appear on a different row < / P>
sdf sdfsd = sdfsdf sdfsdf
will be
sdf sdfsd = sdfsdf sdfsdf
<Thanks
Try it out:
:% s / S \ + / \ r / g
explained:
:% // full file s // option \ s \ + // something Number
+
Thanks for considering @
Comments
Post a Comment