Closed z33ky closed 4 years ago
When attempting to split structs with .e.g 'pub` members, all members are put in a single line.
struct Foo { pub x: u32, pub y: u32 } //turns to struct Foo { pub x: u32, pub y: u32 } //expected struct Foo { pub x: u32, pub y: u32, }
Good catch, I'd missed that. Pushed a fix.
I can confirm that it works now. Thanks again!
When attempting to split structs with .e.g 'pub` members, all members are put in a single line.