How to remove empty lines in Visual Studio Code
Method 1:
Here are step by step instructions to remove those empty lines.
- Open your code in Visual Studio Code
- From Edit Menu, select Replace or use a short cut key (command + Option + F on Mac or Ctrl + H on Windows)
- In the find box type \n\n
- In the replace box type \n
- Make sure the 'Use Regular Expression' is selected
- Select 'Replace All' button
Method 2:
The above method should remove all the empty line however, if it didn’t then follow these steps:
- Open your code in Visual Studio Code
- From Edit Menu, select Replace or use a short cut key (command + Option + F on Mac or Ctrl + H on Windows)
- In the find box type ^(\s)*$\n
- Leave the replace box empty
- Make sure the 'Use Regular Expression' is selected
- Select 'Replace All' button
If you can't find the above steps, here is a picture.
0 comments:
Post a Comment
Thanks