new line, Windows vs Linux

Photo by Gabriel Heinzer on Unsplash

Photo by Gabriel Heinzer on Unsplash

New line

Windows : \r\n

Linux : \n

In vim(neovim), \r is visualized with ^M .

The miss match can be easily fixed with :%s/\r//g command.

for more…

Why Windows uses \r\n newlines instead of \n