vote up 4 vote down star
1

vim shows on every line ending ^M

How I do to replace this with a 'normal' linebreak?

flag

5 Answers

vote up 8 vote down check

Try this:

:%s/<Ctrl-V><Ctrl-M>//g

which means

:%s

substitute

<Ctrl-V><Ctrl-M>

^M characters (the Ctrl-V is a Vim way of writing the Ctrl ^ character)

//

with "" (NULL) characters (the character between the 2 forward-slash / characters)

g

And do it globally (not just the first occurrence on the line).

link|flag
vote up 0 vote down

^M is retrieved by ‘Control‘ + ‘v‘ and ‘m‘, so do

s/^M//g

link|flag
vote up 6 vote down

On Linux and Mac OS, the following works

:%s/^V^M/^V^M/g

(where ^V means control-V and ^M means control-M)

link|flag
Why did this get a downvote? It works, even when your file is mashed onto one line because it's got the wrong line end. – Paul Tomblin May 1 at 13:12
It really works and is exactly what you need when all your text is on one line. – Bart Schuller May 1 at 13:34
Shouldn't %s/^V^M/^V^M/g be %s/^V^M//g ? – Adnan May 1 at 14:01
No. My way replaces whatever is the line end in the file with the correct line end. – Paul Tomblin May 1 at 14:21
vote up 2 vote down

Look at the file type - DOS or Unix:

:set filetype=unix

The file will be written back without carriage return (CR, ^M) characters.

link|flag
vote up 2 vote down

Alternatively, there are open-source utilities called dos2unix and unix2dos available that do this very thing. On a linux system they are probably installed by default; for a windows system you can download them from http://www.bastet.com/ amongst others.

link|flag

Your Answer

Get an OpenID
or

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