I have a text file containing 100 lines of words.
Need to wrap them all in li tags to display as bullet points on a website.
How to do so fast in VS code using some shortcut?
If I paste the text in VS code, it takes up 100 lines with one word on each line.
Question posted in Visual Studio Code
View the official documentation.
View the official documentation.
2
Answers
^(.*)$
in Find<li>$1</li>
in ReplaceBecomes
Shift+Alt+Click
on line 100Home
andShift+End
li
andEnter