How to replace a character for a newline in vim? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T08:27:35Z http://stackoverflow.com/feeds/question/71323 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/71323/how-to-replace-a-character-for-a-newline-in-vim 14 How to replace a character for a newline in vim? Vinko Vrsalovic http://stackoverflow.com/users/5190 2008-09-16T11:19:39Z 2008-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#71334 19 Answer by Konrad Rudolph for How to replace a character for a newline in vim? Konrad Rudolph http://stackoverflow.com/users/1968 2008-09-16T11:21:03Z 2008-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#71342 2 Answer by _Lasar for How to replace a character for a newline in vim? _Lasar http://stackoverflow.com/users/9438 2008-09-16T11:21:34Z 2008-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#71388 1 Answer by fahdshariff for How to replace a character for a newline in vim? fahdshariff http://stackoverflow.com/users/7412 2008-09-16T11:30:32Z 2008-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#71455 1 Answer by Hwan for How to replace a character for a newline in vim? Hwan http://stackoverflow.com/users/11840 2008-09-16T11:43:14Z 2008-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#71474 3 Answer by grantc for How to replace a character for a newline in vim? grantc http://stackoverflow.com/users/11845 2008-09-16T11:45:40Z 2008-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#136915 7 Answer by Logan for How to replace a character for a newline in vim? Logan http://stackoverflow.com/users/11243 2008-09-25T23:40:19Z 2008-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>