It would be great if when you have something like a function call foo::<_, Bar> and you hover over the _, RA would show a popup filling in the type based what it resolves to in the given context. Currently, hovering over foo shows its definition, hovering over Bar shows its definition, hovering over ::< shows the resolved types of the whole function signature, and hovering over _ shows the same. I was expecting hovering over _ to just show me its resolved type, but it shows the whole resolved type of the function, so it takes a bit longer to search through that visually and match up the type parameters to find what I'm looking for.
It would be great if when you have something like a function call
foo::<_, Bar>and you hover over the_, RA would show a popup filling in the type based what it resolves to in the given context. Currently, hovering overfooshows its definition, hovering overBarshows its definition, hovering over::<shows the resolved types of the whole function signature, and hovering over_shows the same. I was expecting hovering over_to just show me its resolved type, but it shows the whole resolved type of the function, so it takes a bit longer to search through that visually and match up the type parameters to find what I'm looking for.