vim shows on every line ending ^M
How I do to replace this with a 'normal' linebreak?
|
vim shows on every line ending ^M How I do to replace this with a 'normal' linebreak? |
||||
|
|
Command
Where Explanation
substitute
^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)
And do it globally (not just the first occurrence on the line). |
|||||||||||||||||||
|
|
On Linux and Mac OS, the following works,
where ^V^M means type Ctrl+V, then Ctrl+M. |
|||||||||||||||||||
|
|
Within
The file will be written back without carriage return (CR, ^M) characters. |
|||||||||
|
|
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.
should select the first bad line
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. |
|||||||||
|
|
First, use I guess it could be Just input |
|||
|
|
|
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. |
|||
|
|
|
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:
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. |
|||
|
|
" This function preserves the list of jumps
|
|||
|
|
use dos2unix utility if the file was created on windows, use mac2unix utility if the file was created on mac. :) |
|||
|
|
|
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.
turned something like this:
into something like this:
Magic. I am profoundly grateful |
||||
|
|
|
Or instead of using vim you can just fix the line breaks using this command
Hope it helps! |
|||
|
|