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?
| ||||
|
feedback
|
|
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 | |||||||||||||
feedback
|
|
I usually use the following to cleanup my line endings:
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 | |||
feedback
|
|
You can also run :e ++ff=dos to remove the ^M: See http://vim.wikia.com/wiki/File_format | |||||||
feedback
|
|
I know this has already been answered, but a trick I use is
This replaces the unix carriage returns with the windows CRLF. Just added in case anyone else had issues. | |||
|
feedback
|
|
Running Vim 7.3 on Windows 7. I used the following command:
To create the ^M I typed in CTRL+Q then CTRL+M. | |||
|
feedback
|
|
Actually what worked for me (on 64-bit windows, gVIM: 7.2 ) was:
not just: ff | |||
|
feedback
|