DanielGavin / ols

Language server for Odin
MIT License
375 stars 56 forks source link

struct fields with `using` don't show in autocomplete #342

Open thetarnav opened 3 months ago

thetarnav commented 3 months ago
Inner :: struct {
    field: int,
}
Outer :: struct {
    using inner: Inner,
}
data: Outer
data.fi // autocompletes to field
data.in // autocompletes to inner
data.inner.fi // doesn't autocomplete