<div dir="ltr">Hi Tim,<div><br></div><div>I've spoken to @djasper about this style and have just started to work on adding a new option to support it.</div><div><br></div><div>The closest I was able to get was to set:</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><b>AlignAfterOpenBracket: false </b></blockquote><div><br></div><div>which produces:</div><div><br></div><div>(1) Fit everything in 1 line.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">void someReallyLongFunction(int firstParameter, int secondParameter)<br>{<br>  someReallyLongObject.someReallyLongFunction(firstParameter, secondParameter);<br>}<br></blockquote><div><br></div><div>(2) Fit everything in next line</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">void someReallyLongFunction(<br>    int firstParameter, int secondParameter, int thirdParameter)<br>{<br>  someReallyLongObject.someReallyLongFunction(<br>      firstParameter, secondParameter, thirdParameter);<br>}<br></blockquote><div><br></div><div>(3) Everything on its own line</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">void someReallyLongFunction(int firstParameter,<br>    int secondParameter,<br>    int thirdParameter,<br>    int fourthParameter,<br>    int fifthParameter)<br>{<br>  someReallyLongObject.someReallyLongFunction(firstParameter,<br>      secondParameter,<br>      thirdParameter,<br>      fourthParameter,<br>      fifthParameter);<br>}</blockquote><div><br></div><div>Currently, I live with this configuration and wrap the first parameter/argument manually. (Not ideal, but still beats formatting all of it manually!)</div><div><br></div><div><b>NOTE</b>: If you're looking to skip (2), you can also set <b>AllowAllParametersOfDeclarationOnNextLine: false</b>. A caveat here is that this only applies for parameters and <b>not</b> for arguments. @djasper: Since we have <b>BinPackParameters</b> and <b>BinPackArguments</b> separated now, perhaps we could also introduce <b>AllowAllArgumentsOnNextLine</b> option to control this?</div><div><br></div><div>MPark.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On 12 May 2015 at 07:28, Tim W <span dir="ltr"><<a href="mailto:timpie.w@gmail.com" target="_blank">timpie.w@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>I really like a refactoring and version system friendly code style :)</div><div>What I means is that we don't want to align parameter/arguments based on the name of the function.  So when the parameter/arguments don't fit on one line we want each of them on their own line but we first want have a break before the first parameter.</div><div><br></div><div>    //example</div><div><br></div><div>    void fooWithAVeryLongParamList(<br>        int firstParameter,</div><div>        int secondParameter</div><div>        int lastParameter)</div><div>    {</div><div>        object.alsoThisDoenstFitSoIBreakImmidiatly(</div><div>            firstParameter,</div><div><div>            secondParameter,</div></div><div><div>            lastParameter);</div></div><div>    }</div><div><br></div><div><br></div><div>I tried already a lot of option and played with the Penalties but had no luck. </div><div><br></div><div>Any idea if this is possible with the current set of options? <br></div><div><br></div><div>Kind regards,</div><div>Tim</div><div><br></div><div><br></div>--<br clear="all"><div><div>An Apple a day keeps Windows away<br><br>ACCU - <a href="http://www.accu.org" target="_blank">http://www.accu.org</a> - Professionalism in Programming.</div></div>
</div>
<br>_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br></div>