Seems "autocomplete hints" take about 5X longer to appear in the editor on Juno vs Indigo. Anybody know what I can do to speed it up?
For example:
struct X
{
int a;
int b;
int c;
}
void f()
{
X x;
x.[At this point I would expect a list of members of X, in about 0.25 seconds, but it is taking more like 2 seconds]
}