Autocomplete for SObject.Field...... Does not work

Issue #690 resolved
Eric Alexander created an issue

When attempting to do a field describe

Account.Name.getDescribe();

The .getDescribe is not in the autocomplete after typing .

Additionally, when manually typing .getDescribe() the autocomplete for the describefieldresults are not presented after typing .

Try typing in this:

Account.Name.getDescribe().getLength()

and you will see what I mean

Comments (3)

  1. Scott Wells repo owner

    Yeah, I have a few variations on this in the completion engine already, but they're more verbose. You can use Account.SObjectType.fields.Name.getDescribe() and it should complete each part properly, but again, it's not as efficient/succinct. I'll plan to add this soon as the whole point is making things easy/quick!

  2. Scott Wells repo owner

    Delivered in IC2. Feel free to reopen if you find a variant (there are four or five ways to express this) that isn't working properly with an example and I'll take care of it.

  3. Log in to comment