我的源代码
namespace one { namespace two {
-> static const class Example :
-> -> Int1, Int2, Int3
-> {
-> public:
-> Example::~Example() :
-> -> S1(),
-> -> S2(),
-> -> S3() {
-> -> // if statements with empty braces
-> -> if ( x )
-> -> {
-> -> }
-> -> }
-> }
-> }
} } //namespace one::two
被 Uncrustify 处理为 ("+" = SPACE)
namespace one { namespace two {
-> +static const class Example :
-> -> +Int1, Int2, Int3
-> +{
-> +public:
-> +Example::~Example() :
-> -> +S1(),
-> -> +S2(),
-> -> +S3() {
-> -> +// if statements with empty braces
-> -> +if ( x )
-> -> +{
-> -> +}
-> -> +}
-> +}
-> +}
} } //namespace one::two
它总是在 TAB 缩进后添加一个空格(“+”)。
我在哪里可以配置这个?
最好的,本