I spent some time trying to figure out how to delete all blank lines in Visual Studio Code and I can\'t get it working. Anybody knows how to do it please?
If I search fo
I found the following works best for me in Visual Studio:
Replace: ^\n$ With:
^\n$
This will find all empty lines and clear them out.