How to remove all newlines from selected region in Emacs?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
M-x replace-string C-q C-j RET RET The trick is to quote the C-j, but otherwise replacing newlines is like replacing anything else. |
|||
|
|
With my key bindings, which I think are standard, on windows: Select region shift-alt-% ctrl-Q ctrl-J return return ! Or to put it another way, query replace region, ctrl-q to get extended characters, ctrl-j to put in a newline, replace with nothing, all of them. |
|||
|
|
|
If you want to create a function to do this (and bind it to F8) you could try:
That's based on an example I that I found here. |
|||
|
|
|
You might also consider the old standby |
|||
|
|