You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 18, 2022. It is now read-only.
let board = stdin.lock().lines().map(|r| r.unwrap()).take(3).collect::<String>();
It is automatically formatted like this:
let board = stdin
.lock()
.lines()
.map(|r| r.unwrap())
.take(3)
.collect::<String>();
Is there a way to prevent this or at least increase the line length where it begins (75) without disabling autoformatting completely? I've tried changing standard vs code settings for wrapping and rulers but it doesn't affect rls.
stuartcrobinson, Wumms and mrchanteystuartcrobinson, Kaesebrot84, olivierEsmieu and unavaliabl3