There are several common cases where the emacs mode gets the indentation incorrect. I'll list the examples as I believe they should be formatted. 1. One indent after open paren with no argument: ``` rust call_to_func( a, b, c) ``` 1. Align `->` with arguments: ``` rust fn a_func_decl(a: int, b: int) -> int { } ``` 1. Align field names: ``` rust foo(SomeStructName { a: int, b: int }) ``` ``` rust foo(SomeStructName {a: int, b: int}) ```