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

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -