How to replace a character for a newline in vim? - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T08:27:35Zhttp://stackoverflow.com/feeds/question/71323http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/71323/how-to-replace-a-character-for-a-newline-in-vim14How to replace a character for a newline in vim?Vinko Vrsalovichttp://stackoverflow.com/users/51902008-09-16T11:19:39Z2008-09-25T23:40:19Z
<p>I'm trying</p>
<pre><code>:%s/,/\n/g
</code></pre>
<p>but it inserts what looks like a ^@ instead of an actual newline, the file is not on DOS mode or anything.</p>
<p>What should I do?</p>
<p>EDIT: If you are curious, like me, check <a href="http://stackoverflow.com/questions/71417/why-is-r-a-newline-for-vim">this other question</a> as well.</p>
http://stackoverflow.com/questions/71323/how-to-replace-a-character-for-a-newline-in-vim/71334#7133419Answer by Konrad Rudolph for How to replace a character for a newline in vim?Konrad Rudolphhttp://stackoverflow.com/users/19682008-09-16T11:21:03Z2008-09-16T11:21:03Z<p>Use <code>\r</code> instead of <code>\n</code>.</p>
http://stackoverflow.com/questions/71323/how-to-replace-a-character-for-a-newline-in-vim/71342#713422Answer by _Lasar for How to replace a character for a newline in vim?_Lasarhttp://stackoverflow.com/users/94382008-09-16T11:21:34Z2008-09-16T11:21:34Z<p>\r seems to work.</p>
http://stackoverflow.com/questions/71323/how-to-replace-a-character-for-a-newline-in-vim/71388#713881Answer by fahdshariff for How to replace a character for a newline in vim?fahdshariffhttp://stackoverflow.com/users/74122008-09-16T11:30:32Z2008-09-16T11:30:32Z<p>You need to use :%s/,/^M/g
To get the ^M character, press Ctrl+V followed by ENTER</p>
http://stackoverflow.com/questions/71323/how-to-replace-a-character-for-a-newline-in-vim/71455#714551Answer by Hwan for How to replace a character for a newline in vim?Hwanhttp://stackoverflow.com/users/118402008-09-16T11:43:14Z2008-09-16T11:43:14Z<p>Ctrl-V pastes the contents of Windows system buffer.</p>
http://stackoverflow.com/questions/71323/how-to-replace-a-character-for-a-newline-in-vim/71474#714743Answer by grantc for How to replace a character for a newline in vim?grantchttp://stackoverflow.com/users/118452008-09-16T11:45:40Z2008-09-16T11:45:40Z<p>With Vim on Windows use Ctrl-Q in place of Ctrl-V</p>
http://stackoverflow.com/questions/71323/how-to-replace-a-character-for-a-newline-in-vim/136915#1369157Answer by Logan for How to replace a character for a newline in vim?Loganhttp://stackoverflow.com/users/112432008-09-25T23:40:19Z2008-09-25T23:40:19Z<p>Here's the trick:
First, set your vi(m) session to allow pattern matching with special characters (ie: newline). It's probably worth putting this line in your .vimrc or .exrc file.</p>
<pre><code>:set magic
</code></pre>
<p>Next, do:</p>
<pre><code>:s/,/,^M/g
</code></pre>
<p>To get the ^M character, type ctrl-v and hit enter. Under Windows, do ctrl-q enter. The only way I can remember these is by remembering how little sense they make: </p>
<p>"What would be the worst control-character to use to represent a newline?" </p>
<p>"Either 'q' ( because it usually means "Quit") or 'v' because it would be so easy to type ctrl-c by mistake and kill the editor." </p>
<p>"Make it so."</p>