The problem is that I would like to get a little convenience while I code PHP in Netbeans.
When the edit cursor is in the middle of the source of a long method I would like to click a key shortcut to go to the beginning of this method.
For instance:
public function doStuff($arg1,$arg2) <--- I want to jump here...
{
$a = $b;
$b = $c;
$c = $d;
$d = $e; <--- cursor is here
.....
}
source
share