You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will display a completion prompt that only includes the members x and y. However, it could also suggest [1] and [2] and upon completion delete the period.
Additionally, index expressions using brackets could similar be completed e.g.
myVector[--<cursor here>
If we're going to be completing all fields in brackets then we'll presumably want to prioritise primitive indexed fields over regular named fields and vice versa when completing fields after a period.
Presently only named fields are suggested/completed.
For example:
This will display a completion prompt that only includes the members
x
andy
. However, it could also suggest[1]
and[2]
and upon completion delete the period.Additionally, index expressions using brackets could similar be completed e.g.
If we're going to be completing all fields in brackets then we'll presumably want to prioritise primitive indexed fields over regular named fields and vice versa when completing fields after a period.
See #27 for initial report.
Considerations / Additional Thoughts
We're only going to be completing primitives, but what about aliases? e.g.
Should we suggest "Red" and "Blue"?
We certainly can, however completion prompts ought to be very responsive, so minimising work is a good idea 😕
The text was updated successfully, but these errors were encountered: