diff --git a/src/expr.rs b/src/expr.rs index 1b17ced8a42..aaf54faf4e2 100644 --- a/src/expr.rs +++ b/src/expr.rs @@ -2558,7 +2558,12 @@ fn shape_from_fn_call_style( offset: usize, ) -> Option { if context.use_block_indent() { - Some(shape.block().block_indent(context.config.tab_spaces())) + // 1 = "," + shape + .block() + .block_indent(context.config.tab_spaces()) + .with_max_width(context.config) + .sub_width(1) } else { shape.visual_indent(offset).sub_width(overhead) }