vscode-rust icon indicating copy to clipboard operation
vscode-rust copied to clipboard

No autocomplete popup in closures

Open cfeitong opened this issue 7 years ago • 1 comments

Version of VSCode: 1.12.2 Version of the extension: 0.3.14 OS: macOs Sierra

Description: In the following

    let pwd = path::Path::new(".");
    let output = pwd
                .read_dir()
                .unwrap()
                .map(|entry| entry.$) // cursor here
                .collect::<Vec<_>>();

It seems rls successfully infers the type of entry, but provides no autocomplete when I press ".".

cfeitong avatar May 19 '17 12:05 cfeitong

@KalitaAlexey fix it, please! :disappointed: Linux x64

JWo1F avatar Mar 15 '18 15:03 JWo1F