vote up 8 vote down star
3

I'm trying

:%s/,/\n/g

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

What should I do?

EDIT: If you are curious, like me, check this other question as well.

flag

7 Answers

vote up 12 vote down check

Use \r instead of \n.

link|flag
why does this work this way? – Vinko Vrsalovic Sep 16 '08 at 11:22
No idea. ;-) It just does and I never bothered to investigate. Shame on me. :-/ – Konrad Rudolph Sep 16 '08 at 11:26
1  
/r is treated as pressing the Enter/Return key. It works on all platforms. – Luka Marinko Oct 12 '08 at 11:41
vote up 5 vote down

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|flag
vote up 2 vote down

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

link|flag
Thanks! I've been looking for that little tidbit. – Darcy Casselman Mar 2 at 18:51
vote up 1 vote down

Ctrl-V pastes the contents of Windows system buffer.

link|flag
vote up 1 vote down

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

link|flag
vote up -1 vote down

you have to type Ctrl-v Ctrl-n to get the actual newline.

link|flag
Uh, that would end up with a ^N char? – zigdon Sep 16 '08 at 14:47
vote up 2 vote down

\r seems to work.

link|flag

Your Answer

Get an OpenID
or

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