30b16bc474
Implements Rewrite for ViewPath Behavior change: always use max_width instead of ideal_width for use list rewrite. I think it looks better, was also suggested by @nrc in https://github.com/nrc/rustfmt/issues/82#issuecomment-105314265
35 lines
1.0 KiB
Rust
35 lines
1.0 KiB
Rust
// Imports.
|
|
|
|
// Long import.
|
|
use syntax::ast::{ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic, ItemDefaultImpl};
|
|
use exceedingly::looooooooooooooooooooooooooooooooooooooooooooooooooooooooooong::import::path::{ItemA,
|
|
ItemB};
|
|
|
|
use list::{// Some item
|
|
SomeItem, // Comment
|
|
// Another item
|
|
AnotherItem, // Another Comment
|
|
// Last Item
|
|
LastItem};
|
|
|
|
use test::{/* A */ self /* B */, Other /* C */};
|
|
|
|
use syntax;
|
|
use {/* Pre-comment! */ Foo, Bar /* comment */};
|
|
use Foo::{Bar, Baz};
|
|
pub use syntax::ast::{Expr_, Expr, ExprAssign, ExprCall, ExprMethodCall, ExprPath};
|
|
|
|
mod Foo {
|
|
pub use syntax::ast::{ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic, ItemDefaultImpl};
|
|
|
|
mod Foo2 {
|
|
pub use syntax::ast::{self, ItemForeignMod, ItemImpl, ItemMac, ItemMod, ItemStatic,
|
|
ItemDefaultImpl};
|
|
}
|
|
}
|
|
|
|
fn test() {
|
|
use Baz::*;
|
|
use Qux;
|
|
}
|