Hi all

I was looking for a quick way to go to the start of a scope. I often find myself selecting something, then typing a start bracket to wrap that selection in brackets:

strpos($key, ".") +1
becomes
(strpos($key, ".") +1)

which leaves my cursor just after the closing bracket. If I want to get back to before the opening bracket, I usually alt-left arrow. I could also go just inside the closing bracket, hit cmd-shift-b to select the whole scope and then click left arrow once, but it's too many keys. Is there a way to navigate bounds?

Thanks

Nevan