Remove Windows line endings in VIM
The Windows line endings (^M) can be easily removed with most editors. In ViM it is very easy.
To remove all windows line endings (and replace with nothing), type the following:
:%s/^V^M//g
(note that the ^V will not display).
Sometimes it is necessary to add a line break as well:
:%s/^V^M/\r/g
Partly based on a Tech Recipes article.
:%s/\r//g
Another way
14 Jan 09 at 15:40
Easier:
:set fileformat=unix
Tor
31 Jan 09 at 03:47
set fileformat didn’t work on windows.
:%s/\r//g works perfectly on windows.
Greg
10 Feb 09 at 10:39