If we write the following code, it goes over 100 columns, so we need to wrap it:
- (VeryLongReturnTypeName)veryLongMethodParameter:(VeryLongParameterName)thisIsAVeryLongParameterName longMethodParameter:(LongParameterName)thisIsAlsoAnotherLongParameterName;
Currently, clang-format with the google style aligns the method parameter names on the first column:
- (VeryLongReturnTypeName) veryLongMethodParameter:(VeryLongParameterName)thisIsAVeryLongParameterName longMethodParameter:(LongParameterName)thisIsAlsoAnotherLongParameterName;
We'd like clang-format in the google style to align these to column 4 for Objective-C:
- (VeryLongReturnTypeName) veryLongMethodParameter:(VeryLongParameterName)thisIsAVeryLongParameterName longMethodParameter:(LongParameterName)thisIsAlsoAnotherLongParameterName;
Test Plan: make -j12 FormatTests && ./tools/clang/unittests/Format/FormatTests
Set Style.ColumnLimit to something lower so that you don't have to wrap single lines (for better test readability).