In php, if I have a function such as:
function test($b) {
var $a = 0;
while ($a < b) {
$a += 3;
}
return $a;
}
If the cursor is on the $a += 3 line, is it possible to quickly select the entire function? "v2aB" would select everything including the function braces but not the declaration "function test($b) "