Visual Studio Code - delete all blank lines - regex

后端 未结 15 1215
心在旅途
心在旅途 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 19:12

    There is my version for cleaning empty lines with white space:

    find:    (?:\s*$(\r?\n)){2,}
    replace: $1
    

提交回复
热议问题