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.
|
I'm trying
but it inserts what looks like a What should I do? EDIT: If you are curious, like me, check the question Why is \r a newline for Vim? as well.
| ||||
|
feedback
|
|
Use | |||||||||||||||
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.
Next, do:
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." | |||||||||
feedback
|
|
With Vim on Windows use Ctrl+Q in place of Ctrl+V | ||||
|
feedback
|
|
You need to use :%s/,/^M/g To get the ^M character, press Ctrl+V followed by ENTER | |||
|
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. | |||
|
feedback
|