使用gnu-indent
进行更改
int i = fact(n);
到
int i = fact (n);
-gnu
对其进行格式化,但我使用-kr
。
答案 0 :(得分:1)
我相信您想要的选项为-pcs
,或者长为--space-after-procedure-calls
。查找此信息最方便的地方是其官方手册中的long list of options to GNU indent。
答案 1 :(得分:1)
-pcs
是在函数名称后添加空格的开关。这样-kr -pcs
会做您想要的事情。