Open brianxk opened 1 year ago
Language: Rust
let a = 1; let b = 2; println!("{} {}", a, b|);
Pressing <CR> at | results in:
<CR>
|
println!("{} {}", a, b |);
However I would like it to result in:
Is this possible?
Thank you
This plugin isn't a formatter. You'll have to tweak settings in Vim (realistically via :h cino), or possibly get a better formatter
:h cino
Language: Rust
Pressing
<CR>
at|
results in:However I would like it to result in:
Is this possible?
Thank you