| Age | Commit message (Collapse) | Author | Lines |
|
fix: Improve self param completion applicability
Fixes https://github.com/rust-lang/rust-analyzer/issues/9522
|
|
|
|
|
|
aware
|
|
|
|
Add more test cases for generic args
|
|
|
|
Fix tidy check does not work for marks in multiline
|
|
fix: complete enum variants as patterns in pattern path
close #12593
|
|
|
|
|
|
|
|
|
|
fix: Fix completions for locals not working properly inside macro calls
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fix: local items should not be completed in parent signature
fixes #11959
> We get a Bar completion for the following snippet which is wrong as the item is not visible in that position.
> ``` rust
> fn foo() -> $0 {
> struct Bar;
> }
> ```
I investigated the problem and found that the scope of the cursor offset, also `CompletionContext.scope` is the body of the function
|
|
original file and not to the marco file
|
|
|
|
adjust test_visibility_filter test case
|
|
|
|
|
|
fix: complete non-std enum at the start of `use` completions
close: #12421
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
internal: Move keyword expressions to expr completions module
|
|
|
|
|
|
|
|
|
|
|
|
|