Currently the lambda body indents relative to where the lambda signature is located. This instead lets the user
choose to align the lambda body relative to the parent scope that contains the lambda declaration. Thus:
someFunction([] { lambdaBody(); });
will always have the same indentation of the body even when the lambda signature goes on a new line:
someFunction( [] { lambdaBody(); });
whereas before lambdaBody would be indented 6 spaces.
Did you generate this by hand or using the clang/doc/tools/dump_style.py?