Closed
Description
Example:
let foo = Vec::new();
loop {
// other code
foo.<|>
}
To reproduce:
- Type
pu
=> getVec::push
suggested - Accept suggestion => line changes to
foo.push(value)
Desired outcome: let foo = Vec::new();
is changed to let mut foo = Vec::new();
when accepting the suggestion
Actual outcome: let foo = Vec::new();
is not changed
I would love if ra did this because that would require less jumping around the code.