If you split a chain of invocations into multiple lines (according to style guidelines. This is also what rustfmt does) the completion won't work
use std::io;
fn main() {
println!("Guess the number!");
let mut guess = String::new();
io::stdin()
.r // here, the completion won't work
println!("You guessed {}", guess);
}
The completion popup does not show on its own, but also when you press C-xC-o
If you split a chain of invocations into multiple lines (according to style guidelines. This is also what rustfmt does) the completion won't work
The completion popup does not show on its own, but also when you press C-xC-o