rustfmt-nightly 1.4.11

Tool to find and fix Rust formatting issues
Documentation
// rustfmt-indent_style: Visual
fn main() {
    match option {
        None => some_function(first_reasonably_long_argument,
                              second_reasonably_long_argument),
    }
}

fn main() {
    match option {
        None => {
            some_function(first_reasonably_long_argument,
                          second_reasonably_long_argument)
        }
    }
}