
Working with Markdown files in Visual Studio Code is simple, straightforward, and fun.

2 years, 5 months ago Placing the \n outside of the anchors is what worked for me.

To acocunt for whitespaces too replace (^\s*\n)+ with nothing 3 years, 6 months ago Easy step: /a/50042582/6597375 2 years, 5 months ago Not sure but only this worked for me, compare to all other answers. His solution deletes lines where there is also some whitespace character (spaces, tabs) 3 years, 8 months ago This answer does not take all cases, what if you have spaces in blank line 3 years, 8 months ago Great! To remove more than one consecutive empty lines I replaced \n+ with \n. In my solution it deletes only lines where there is nothing. 3 years, 9 months ago Also look at the solution below. Thanks :) A lots of versions of VSC in between but that's alright. Happy Coding !!! 4 years ago and remove every blank space in your document? 3 years, 11 months ago It's working now. 4 years, 5 months ago Html / CSS / JS Prettify 4 years, 4 months ago Find this in regex mode ^$\n and replace with blank will also work fine. 4 years, 5 months ago what plugin do u use with Sublime Text3? I used to use Webstorm and it is built in.

4 years, 5 months ago Hi Im using Sublime Text3 wich has solved a lot of problems, plus is lighter and has some nice features. 4 years, 5 months ago That's because it's a Visual Studio extension not a Visual Studio Code extension. 6 years ago this helped me only after I replaced all ^\s*$ with empty, then I tried (\r?\n) 4 years, 9 months ago Not found (on Manjaro Linux). 6 years, 1 month ago Visual Studio 2015 is not Visual Studio Code.

To replace a new line you need to use \n but VS Code doesn't currently support multi-line regex matches ( #313) 6 years, 6 months ago Thank you Marie. 6 years, 2 months ago Related Topics regex visual-studio-code blank-line Comments 6 years, 6 months ago I added a comment on the issue you opened about this but for anybody else, $ doesnt actually match the new line character, it matches a zero-width token that exists before the new line character.
