Answers for "vs code remove all line breaks"

2

vs code remove newline

first ctrl+shift+p to list all commands and then just type Join lines
Posted by: Guest on November-05-2020
1

remove all lines starting with visual code

If you want to delete the entire line make your regex find the entire line and include the linefeed as well. Something like:

^.*(word1|word2|word3).*n
Then ALT-Enter will select all lines that match and Delete will eliminate them including the lines they occupied.
Posted by: Guest on July-13-2021

Code answers related to "vs code remove all line breaks"

Browse Popular Code Answers by Language