Skip to content
Advertisement

How to select multiple lines in Sublime Text (quickly)

I have a JS file that has over 100000 lines of code, I want to get rid of the first 25000, I’ve been trying hard but can’t figure out how do I select them all at once (holding left mouse button and scrolling down is not an option as it would take forever).

I guess holding SHIFT and arrow DOWN is the way to go, but I have absolutely no idea how to select them all at once anyway. Maybe selecting 25000th line, pressing shift, left arrow and then HOME would help, but I’m working on OS X and have no HOME button my Macbook. Also shortcut for “going to line” (ctrl+q) doesn’t seem to work with selection.

How do I do that? Sorry for so dumb question, would’ve been a second in VIM, but I’m stuck to SE2 now.

Thanks a lot!

Advertisement

Answer

See this forum topic about the “Mark” feature from Sublime Text: https://www.sublimetext.com/forum/viewtopic.php?f=2&t=16844

Ctrl-G to go to the last line you want to select, by number.

Edit > Mark > Set Mark to set your selection-end marker.

Ctrl-G (or Ctrl-Home) to go to the first line you want to select.

Edit > Mark > Select to Mark

Advertisement