would it be possible, at least for native types, to get an auto suggestion based on return type of a function?
e.g.
int foobar()
{
int a = 0;
int b = 0;
return | auto suggest a and b
}
BOOL foobar()
{
BOOL a = FALSE;
return | auto suggest a, TRUE and FALSE
}
sure will only work if vax knows about vars defined in current scope, but im assuming it does:)
-bugfix