:%s/\r//g
High level explanation:
Replace all \r’s with empty spaces globally.
broken down:
% – all lines in buffer
s – substitute
\r – Dos Carriage Return
g – do it globally (every occurrence on every line)
:%s/\r/\r/g Convert DOS return into a proper CR




Recent Comments