In previous builds, I can using Command + R on OS X to properly scroll through Functions. The issue in Build 3114 is it will only pick out the return variable type if the return variable type and the function name are not on the same line.
3114 Issue:
In previous versions, Command + R will show you “foo” in the “@” function scroller. But now it shows just “int”. Just showing the return type is not useful. The editor was smarter in the previous versions where it can pick out “foo”.
Can someone help fix this?
int
foo (int var1) {
int var2
…
return var2;
}