Hi,

combining the *AlignAfterOpenBracket* (``BracketAlignmentStyle=AlwaysBreak``) 
option with ``BinPackArguments`` and ``BinPackParameters`` set to ``false``, 
it's possible to get the following formatting:

    someShortFunction(argument);
    someVeryVeryVeryLongFunction(
        argument1,
        argument2,
        argument3,
        argument4);

However, similar to ``BreakBeforeBraces``, I'd like to break _before_ the 
closing parenthesis too:

    someShortFunction(argument);
    someVeryVeryVeryLongFunction(
        argument1,
        argument2,
        argument3,
        argument4
    );

Is this possible with the existing options?

Thanks and best regards,
Julius
Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Christian Lamprechter
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928

_______________________________________________
cfe-users mailing list
cfe-users@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users

Reply via email to