如何使用gnu indent在函数名称和括号之间设置空格?

时间:2018-12-05 15:12:02

标签: c++ c gnu-indent

使用gnu-indent进行更改

int i = fact(n);

int i = fact (n);

-gnu对其进行格式化,但我使用-kr

2 个答案:

答案 0 :(得分:1)

我相信您想要的选项为-pcs,或者长为--space-after-procedure-calls。查找此信息最方便的地方是其官方手册中的long list of options to GNU indent

答案 1 :(得分:1)

-pcs是在函数名称后添加空格的开关。这样-kr -pcs会做您想要的事情。