Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

vim shows on every line ending ^M

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

share|improve this question

12 Answers

up vote 27 down vote accepted

Command

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

Where <Ctrl-V><Ctrl-M> means type Ctrl+V then Ctrl+M.

Explanation

:%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).

share|improve this answer
2  
this doesn't work! the one below this works! – luckytaxi Jul 21 '10 at 19:14
@luckytaxi - what does it do for you? – LeopardSkinPillBoxHat Jul 22 '10 at 1:19
4  
it removed the ^M characters but doesn't insert the carriage return. – luckytaxi Jul 23 '10 at 18:33
2  
this is a WRONG answer! – feydr Jan 23 '12 at 19:57
1  
This doesn't work – Josh Moore Jul 30 '12 at 14:27
show 7 more comments

On Linux and Mac OS, the following works,

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

where ^V^M means type Ctrl+V, then Ctrl+M.

share|improve this answer
2  
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 '09 at 13:12
It really works and is exactly what you need when all your text is on one line. – Bart Schuller May 1 '09 at 13:34
1  
No. My way replaces whatever is the line end in the file with the correct line end. – Paul Tomblin May 1 '09 at 14:21
18  
The accepted answer is incorrect. this one works better. – luckytaxi Jul 21 '10 at 19:15
1  
@jumpnett, you didn't type it right. colon, then percent, then s, then slash, then control v, then control m, then slash, then control v, then control m, then slash, then g, then return. – Paul Tomblin Nov 27 '12 at 21:19
show 7 more comments

Within vim, look at the file format — DOS or Unix:

:set filetype=unix

:set fileformat=unix

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

share|improve this answer
use :set fileformat=unix For most configurations filetype only changes the syntax type being used. – Ryan Jun 21 '11 at 7:55
This fixed the bug I was having... Vim started thinking my UNIX formatted file was windows and newly changed lines were showing ^M in the git diff. – Thomas Hunter Mar 23 '12 at 3:41
Must be system dependent. Today, this one worked. The set command is done within vim, btw. – gbarry Nov 28 '12 at 0:36
Small gotcha I found: if Git updates a file in the background (due to a checkout) and you have set this to something other than what Vim guessed when opening the file, Vim does not appear to reconvert when reloading the buffer. You'll end up with a bunch of extraneous characters. You can then use one of the %s/^V^M/.../g approaches above. Which one depends on exactly what formats you're converting to and from. – Leo Mar 21 at 15:35

in order to get the ^M character to match I had to visually select it and then use the OS copy to clipboard command to retrieve it. You can test it by doing a search for the character before trying the replace command.

/^M

should select the first bad line

:%s/^M/\r/g

will replace all the errant ^M with carriage returns.

This is as functions in MacVim, which is based on gvim 7.

Sorry for reviving an old question that has long since been answered, but there seemed to be some confusion afoot and I thought I'd help clear some of that up since this is coming up high in google searches.

share|improve this answer
pressing ctrl-v ctrl-m may work to insert the character, as well, fwiw. but the \r is what inserts the proper carriage return. – Metagrapher Nov 26 '11 at 3:06
1  
This is the RIGHT answer. As said above, use <ctrl-v><ctrl-m> to get the literal ^M inserted in the command. – caya Dec 17 '12 at 4:23
I agree, though I am certain that if that had worked for me at the time of original posting then I wouldn't have posted. ;) – Metagrapher Dec 18 '12 at 21:34

First, use :set ff? to figure out the file format your file is.

I guess it could be unix, then the problem is your file was created with fileformat=dos adding "^M^J" to the line end but read with flieformat=unix only removing the "^J" from the line end, leaving the "^M" there.

Just input :e ++ff=dos in Vim command line to change your file's format from unix to dos. It should solve the problem. If not, :%s/\r//g should help you out.

share|improve this answer

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.

share|improve this answer

I encountered the situation where when opening a file I had created with BBEdit, MacVim was displaying a bunch of ^M line returns instead of regular ones. The following string replace solved the issue - hope this helps:

:%s/\r/\r/g

It's interesting because I'm replacing line breaks with the same character, but I suppose Vim just needs to get a fresh \r to display correctly. I'd be interested to know the underlying mechanics of why this works.

share|improve this answer
There's a tendency for search functions to accept broader rules for recognizing end-of-line sequences. But \r has a specific meaning when it's being written as data. – gbarry Nov 28 '12 at 1:18

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

s/^M//g

share|improve this answer

" This function preserves the list of jumps

fun! Dos2unixFunction()
let _s=@/
let l = line(".")
let c = col(".")
try
    set ff=unix
    w!
    "%s/\%x0d$//e
catch /E32:/
    echo "Sorry, the file is not saved."
endtry
let @/=_s
call cursor(l, c)
endfun
com! Dos2Unix keepjumps call Dos2unixFunction()
share|improve this answer
In this case, what's wrong with using *NIX's native dos2unix command? linux.die.net/man/1/dos2unix – Metagrapher May 18 '11 at 18:51

use dos2unix utility if the file was created on windows, use mac2unix utility if the file was created on mac. :)

share|improve this answer

I've spent an afternoon struggling with \n ctrl-v 012 (both of which supply me with null). & laboured through this thread until I reached metagrapher's.

\r worked fine for me!

/),/s/),/)\r/g

turned something like this:

blacklist-extra:i386 (0.4.1, 0.4.1+nmu1), libmount1:i386 (2.20.1-5.1, 2.20.1 -5.2), libblkid1:i386 (2.20.1-5.1, 2.20.1-5.2), libapt-pkg4.12:i386 (0.9.7.4 , 0.9.7.5), nmap:i386 (6.00-0.1, 6.00-0.2), libsane-common:i386 (1.0.22-7.3,

into something like this:

26 libwv-1.2-4:i386 (1.2.9-3, automatic)
27 openjdk-6-jre-headless:i386 (6b24-1.11.4-3, automatic)
28 jed:i386 (0.99.19-2.1)

Magic. I am profoundly grateful

share|improve this answer

Or instead of using vim you can just fix the line breaks using this command

fromdos <filename.txt>

Hope it helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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