Reputation: 27
Suppose that I have 1 000 000 lines of text in .txt file. I want to copy lines from 350 000 to 700 000. Is there any shortcut for that?
Upvotes: 2
Views: 482
Reputation: 3266
VS Code v1.46 has a new selection anchor feature that helps you to select multiple lines easier.
350000
and hit Enter. It would jump to line 350 000.700000
and hit Enter.Upvotes: 2