我想更改 Qt Creator 2.7.1 中的大括号编码样式。目前,它是:
void bar(int i)
{
static int counter = 0;
counter += i;
}
但我想将其更改为:
void bar(int i) {
static int counter = 0;
counter += i;
}
如果我去Options -> C++ -> Edit -> Braces
,我只能改变大括号的缩进。在预览文本字段中手动更改大括号的位置不会产生任何效果。