Is there any way in Notepad++ (or even with another tool) to change the line ending automatically on multiple files in one go?
i.e. convert a mix of windows EOL (CRLF) and UNIX EOL (LF) files to be all Windows EOL (CRLF)
solution using Notepad++:
- use the
Replacefunction for all open files. - look for the end of line to be replaced (
\nfor UNIX format,\r\nfor Windows format) - make sure to select the
Extended searchmode, in order to prevent stuff likeprintf("blah\n");to be replaced...