Santhosh
Santhosh

Reputation: 11854

sublime text: how to make the cursor go to the beginning of a find text

In sublime text when i find some text using regex assuming START.*END where i want to find text between START and END words.

Now after findind we see the cursor is located after the END word. Is it possible to put the cursor before START word

Or is there a keyboard shortcut which can bring the cursor to ahead of START.

Because if i do CTRL + LEFT it will take me to the next . (dot) or space etc

If i do HOME then it will go to the beginning of the line

Upvotes: 1

Views: 1603

Answers (1)

Dinko Pehar
Dinko Pehar

Reputation: 6071

As user @OdatNurd mention in comments, after you search and select all occurrences, press Left or Right arrow to go to beginning or end of selection.

Example: after selecting all occurrences, press Left to go to the beginning of a selection and edit.

Edit example

Upvotes: 3

Related Questions