Small issue with struct member completion, it only works when accessing the variable standalone, for example:
struct SomeRandomStruct
{
int a;
string b;
};
void SomeFunction(struct SomeRandomStruct str)
{
str. // Completion shows the struct member vars here
if (str. // Completion doesn't show the struct member vars
}
Small issue with struct member completion, it only works when accessing the variable standalone, for example: