Answers for "vs code select multiple lines"

2

vs code select every lines

[1] Press: Ctrl + H
[2] Check the regex icon: .*
[3] In the find field, enter the following (replace N with the number of lines to select: 2 for every 2nd, 10 for every 10th):
(.*\n){N}
example: (.*\n){5} for selecting every 5th line
[4] Press: Alt + Enter
[5] Move the multiple cursors with your arrow keys (and/or type what you want)
Posted by: Guest on July-22-2021
18

vs code edit multi line

Windows: Ctrl + Alt + Arrow Keys.
Linux: Shift + Alt + Arrow Keys.
Mac: Opt + Cmd + Arrow Keys.
Posted by: Guest on April-19-2020
9

multiple line selection vscode

You can just Alt + click for additional cursors
Posted by: Guest on February-17-2021
1

vscode multiple line string

You can break lines using + concatening operator:

template: "<h1>" +
    "</h1>"
Or ` backtick

template: `<h1>
    </h1>`
Or \ backslash

template: "<h1>\
    </h1>"
Posted by: Guest on October-20-2020
2

visual studio code edit multiple lines

Linux: Shift + Ctrl + Arrow Keys
Posted by: Guest on June-03-2021
0

vs code select multiple lines

// mac OS shortcut 
alt + (click on the line, then click the next line etc)

// note: you can click on the cursor to remove it if you've placed it by mistake
Posted by: Guest on August-24-2021

Code answers related to "vs code select multiple lines"

Browse Popular Code Answers by Language