Align Arguments With Parentheses

已回答

Is there a way in CLion to align the function arguments with the parenthesis of the function being called for example the way I can currently configure CLion to auto format is

foo(
  arg1,
  arg2
    );

Notice that the parentheses are lined up but the arguments are set back from them.  I'd like to have it look more like

foo(
     arg1,
     arg2
     );

 

Thanks for your time and help!

0

Thanks for the issue, I've created the bug in our tracker: https://youtrack.jetbrains.com/issue/CPP-8599. Feel free to comment or upvote.

0

请先登录再写评论。