Is there a command to select everything between a range of cursors in sublime?

2.6k Views Asked by At

My circumstance:

I'm working with Fortran. Sometimes, I want to select everything that's within a block of code. It's easy for me to select the start/end elements of a block because it all look like this:

SUBROUTINE FOO(BAR)
IF (BAR .GT. 1) THEN
    //DO SOMETHING
ENDIF
RETURN
END SUBROUTINE FOO

Move the cursor to SUBROUTINE, Hit Ctrl+D twice, done. Both instances of the SUBROUTINE keyword are highlighted.

But now I want to select everything between the SUBROUTINE keywords. I want a selection that includes everything from the start of the first SUBROUTINE to the end of the second SUBROUTINE. I prefer this be done in language agnostic manner, because I can imagine circumstances like this might occur in other contexts and I don't want to bother accumulating muscle memory for something that only works in Fortran.

Is there a command in sublime to select all text that occurs between the start and end positions of a multicursor selection?

1

There are 1 best solutions below

1
On BEST ANSWER

There's a group of commands in sublime that approximate this behavior. They're exposed through the CTRL+K combo keys:

  • set_mark, CTRL+K, CTRL+Space
  • select_to_mark, CTRL+K, CTRL+A
  • delete_to_mark, CTRL+K, CTRL+W

Search for the first result, call set_mark, search for the second, call select_to_mark.