roife

Results 51 comments of 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 } } } ```

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...

![image](https://github.com/user-attachments/assets/4b687cbb-ec1c-49e0-a07b-5cc115ba7360)

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 `...`. ![image](https://github.com/user-attachments/assets/72ba3210-ae30-44bd-bd42-84aa693ae081)

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...