Sublime Forum

"jump to function" equivalent?

#1

I’m looking into moving from NetBeans to Sublime for my PHP development.

NetBeans has an insanely useful feature whereby you can click on a function call and it will locate that function within the current project, open the file that contains it and position the cursor at the start. For example in the code below I could CTRL-click on Helper::do_stuff() and it would load Helper.php.

class Something() {
  
  public function method() {
     Helper::do_stuff();
    //        ^^^^^^^^  I want to click on this to go to it
  }

}

Is there an equivalent in Sublime2? CTRL+R seems closest but it’s not quite as usable.

thanks!

0 Likes

#2

Sounds like you want to look at the SublimeCodeIntel plugin:

github.com/Kronuz/SublimeCodeIntel

1 Like

#3

It does indeed - thank you!

0 Likes