在netbeans php中跳转到方法签名的方法是什么?

Mar*_*cky 3 php netbeans editor

问题是,当我在Netbeans中编写PHP代码时,我想要有点舒服.
当编辑光标位于long metod源的中间时,
我想按一个键快捷键跳转到该方法的开头.

例如:

public function doStuff($arg1,$arg2) <--- I want to jump here...
{
$a = $b;
$b = $c;
$c = $d;
$d = $e; <--- cursor is here
.....
}
Run Code Online (Sandbox Code Playgroud)

Jus*_* T. 8

这对我来说很好:Ctrl+7+return