Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reference completions are a bit too aggressive #8357

Closed
Lucretiel opened this issue Apr 5, 2021 · 3 comments · Fixed by #12887
Closed

Reference completions are a bit too aggressive #8357

Lucretiel opened this issue Apr 5, 2021 · 3 comments · Fixed by #12887
Assignees
Labels
A-completion autocompletion C-bug Category: bug S-actionable Someone could pick this issue up and work on it right now

Comments

@Lucretiel
Copy link

When I go to complete this function:

fn poll(&mut self, value: &mut Context);

future.poll(&mut  )
//               ^ The point is here

I see these completions:

Screen Shot 2021-04-05 at 3 41 17 PM

&mut context definitely seems like the one I want. However, when I select it, it doesn't seem to be aware that I already typed &mut, and inserts it again:

future.poll(&mut &mut context)

This completion should be sufficiently context-sensitive that it doesn't double up the &mut prefix.

@Veykril Veykril added A-completion autocompletion S-actionable Someone could pick this issue up and work on it right now labels Apr 6, 2021
@Veykril
Copy link
Member

Veykril commented Apr 6, 2021

cc @JoshMcguigan

@JoshMcguigan
Copy link
Contributor

Thanks for the report!

I suspect a direct cause of this is that the expected_type field on CompletionContext doesn't consider the existence of a leading reference.

https://github.com/rust-analyzer/rust-analyzer/blob/e6a1c9ca60c19bf3b02b302e21d9f9fd9bd8a466/crates/ide_completion/src/context.rs#L310-L401

But an alternate solution, which might be better long term (?) is considering the leading reference as part of the thing being completed. In that case expected_type would stay as-is and we'd in this case just overwrite the existing &mut. The upside to this approach is if the user starts typing &con we could complete &mut context. The downside is if our ref completions were not very good, we could complete &mut con to perhaps context (deleting the &mut that the user has already entered).

In any event I'm glad to have this report as it gives an important additional use case to think about as I'm working on #8058.

@Veykril Veykril added the C-bug Category: bug label Feb 3, 2022
@kpreid
Copy link
Contributor

kpreid commented Jul 5, 2022

I keep hitting this problem when trying to complete struct fields (where the name I am looking for might be one I don't entirely remember), and it'd be really nice to have it fixed. As encouragement, here's a self-contained example:

fn foo(_: &mut i32) {}
struct S {
    some_field_with_a_long_name: i32,
}

fn main() {
    let s = S {
        some_field_with_a_long_name: 100,
    };
    foo(&mut s.so/* cursor here */);           
}

Put the cursor at the specified point and hit tab (in VS Code), and the extra &mut is inserted:

    foo(&mut &mut s.some_field_with_a_long_name);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-completion autocompletion C-bug Category: bug S-actionable Someone could pick this issue up and work on it right now
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants