up vote 130 down vote favorite
40
share [g+] share [fb]

I'm trying

:%s/,/\n/g 

but it inserts what looks like a ^@ instead of an actual newline. The file is not in DOS mode or anything.

What should I do?

EDIT: If you are curious, like me, check the question Why is \r a newline for Vim? as well.

link|improve this question

76% accept rate
feedback

7 Answers

up vote 166 down vote accepted

Use \r instead of \n.

link|improve this answer
2  
why does this work this way? – Vinko Vrsalovic Sep 16 '08 at 11:22
1  
No idea. ;-) It just does and I never bothered to investigate. Shame on me. :-/ – Konrad Rudolph Sep 16 '08 at 11:26
23  
/r is treated as pressing the Enter/Return key. It works on all platforms. – Luka Marinko Oct 12 '08 at 11:41
for whatever reason, replacing all '\n with ',\n works when doing: %s/'\n/',\r/g – tipu Oct 27 '11 at 20:20
feedback

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.

:set magic

Next, do:

:s/,/,^M/g

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:

"What would be the worst control-character to use to represent a newline?"

"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."

"Make it so."

link|improve this answer
18  
Whenever I hear the word "magic" in a programming context, I get scared. – David Rivers Jan 11 '11 at 15:56
I'm using GVim on Windows, and I need neither the :set magic (it's not in my ~/_vimrc either) or ctrl-q. Just a simple ctrl-v followed by enter creates the ^M character for me just fine. – Chris Phillips Sep 14 '11 at 21:02
Awesome, works great! :) – MasterZ Sep 27 '11 at 12:13
feedback

With Vim on Windows use Ctrl+Q in place of Ctrl+V

link|improve this answer
Thanks! I've been looking for that little tidbit. – Darcy Casselman Mar 2 '09 at 18:51
feedback

\r seems to work.

link|improve this answer
feedback

You need to use :%s/,/^M/g To get the ^M character, press Ctrl+V followed by ENTER

link|improve this answer
feedback

From eclipse, the ^M's can be embedded in a line, and you want to convert them to newlines.

:s/\r/\r/g

Makes no sense, but it works.

link|improve this answer
feedback

Ctrl-V pastes the contents of Windows system buffer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.