Anyone know how to do this? I want to remove all empty lines if they are more than two, consecutive.
In Scite I enable backslash expressions (or escape sequences or something) and replace \r\n\r\n\r\n by \r\n\r\n, and repeat that, to get rid of large empty space that I had created.
Whatever I try with sublime, with regexp and [\r\n\r\n\r\n], it replaces it by stray <0x0d> cariage returns or so.
Tried [\r\n\r\n\r\n], \r\n\r\n\r\n, I don’t understand what Sublime does or why there is nothing like it is in Scite or VS or so. : )
Thanks…