我想以某种方式配置我的astyle,它会格式化与函数调用不同的宏调用:
THIS_IS_A_MACRO(param_a,
alined_here, param_c);
this_is_a_function(param_a,
three_indents_here, param_c);
似乎我需要--indent-after-parens
,但我需要缩进3(12个空格)。另外,我想在调用宏时调整参数。
--indent-continuation=#
仅影响第一行末尾带有(
或=
的来电,因此在此处似乎没用。
astyle我需要什么?如果是这样,怎么样?谢谢!