I'm using gVim on Windows. My code shows ^M characters at the end of lines. I used :set ff=dos to no avail. The ^M characters remain for existing lines, but don't show up for newlines I enter. I've switched modes to mac (shows ^J characters) and unix (also shows ^M characters) and back to dos. Has anyone else seen this?

link|improve this question

64% accept rate
feedback

6 Answers

up vote 33 down vote accepted

This happens when you have a mixture of Windows line endings and Unix ones. If you have 100 lines, 99 are \r\n and one is \n, you'll see 99 ^M characters. The fix is to find that one line and replace it. Or run dos2unix on the file. You can replace the Windows line endings with :%s/\r\(\n\)/\1/g.

link|improve this answer
I found that one line just before you wrote this. :) Thanks! – Jerph Apr 28 '09 at 19:21
1  
Heh, typical. Vim is great, so stick with it! :-) – richq Apr 28 '09 at 19:47
1  
i wish i could give you +1000 for this – espais Aug 27 '10 at 20:51
I usually just whack 'em with :%s/^M// – TMN Jul 26 '11 at 14:43
feedback

I usually use the following to cleanup my line endings:

:g/^M$/s///

To get the ctrl-M I usually type ctrl-Q, then ctrl-M and it puts it in. (In some environments it may be ctrl-V then ctrl-M.) I don't know why, but I find that one easier to remember than rq's.

Don't forget to do :set ff=dos as well, or you'll end up saving with UNIX line endings still.

link|improve this answer
Yeah, I normally use the ^M version with Ctrl-Q and all that. But it's tougher to explain ;-) and the group match version is copy paste friendly. – richq Apr 29 '09 at 6:07
feedback

You can also run :e ++ff=dos to remove the ^M: See http://vim.wikia.com/wiki/File_format

link|improve this answer
thanks, that's new to me – Jerph Jul 27 '11 at 14:45
Works great thanks! – volting Sep 14 '11 at 15:08
This was what I was looking for, and is the actual correct answer. Thanks. – Jay Taylor Dec 9 '11 at 1:43
feedback

I know this has already been answered, but a trick I use is

:%s/\r/\r/g

This replaces the unix carriage returns with the windows CRLF. Just added in case anyone else had issues.

link|improve this answer
this works great!! – Gordon May 9 '11 at 16:18
feedback

Running Vim 7.3 on Windows 7. I used the following command:

:%s/^M/\r/g

To create the ^M I typed in CTRL+Q then CTRL+M.

link|improve this answer
feedback

Actually what worked for me (on 64-bit windows, gVIM: 7.2 ) was:

:set ffs=dos

not just: ff

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.