roife
roife
Can we filter out completion items like `ra@gennew` just based on name matching?
```rust fn bar() { for i in 0..10 { for j in 0..10 { r| // cursor } } } ```
@rustbot claim
For the `return` kw, should we navigate to the def (i.e., the function name), the arrow`->` or the `fn` keyword of the function?
I've encountered some difficulties handling macros: Currently, for functions, I can correctly handle three scenarios (see GIF): - Jumping directly to the function. - Inside a macro, and jump to...
Currently, placing the cursor over `return` (in `async` block) highlights the corresponding `async`, while placing it over `async` just highlights all `await`. It's a bit inconsistent. Should we implement a...
I really need this feature, but I noticed that the `inlay_hints_style` field is of type `HighlightStyle`, which includes font style, weight, and color, but does not allow for setting the...

Previously, hovering over any part of a hint would display the complete type. Now, the certain hidden content is only showed when the mouse hovers over its corresponding `...`. 
We already have this assist. Note that you need to place the cursor on the name of the `struct` to activate it. It would be better to expand the trigger...