Visual Studio Code - delete all blank lines - regex

后端 未结 15 1188
心在旅途
心在旅途 2021-01-29 18:36

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

15条回答
  •  囚心锁ツ
    2021-01-29 18:58

    I found the following works best for me in Visual Studio:

    Replace: ^\n$ With:

    This will find all empty lines and clear them out.

提交回复
热议问题