我有以下.cpp文件:
////////////////////////////////////////////////////////////////////////////////
void call_long_function_name(bool) {}
void sf(bool) {}
int main() {
bool test = true;
if (test) { call_function_name(test); }
if (test) { sf(test); }
return 0;
}
(斜杠分隔80个字符)。使用以下配置文件,clang-format建议:
////////////////////////////////////////////////////////////////////////////////
void call_long_function_name(bool) {}
void sf(bool) {}
int main() {
bool test = true;
if (test) {
call_function_name(test);
}
if (test) {
sf(test);
}
return 0;
}
即使在文件中我也允许简短的if语句适合单行。
我是否设置了错误选项?
我可以使用哪些选项来最大限度地减少浪费的垂直空间?
Clang-format的.clang格式文件
BasedOnStyle: Google
AccessModifierOffset: -1
AlignEscapedNewlinesLeft: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortFunctionsOnASingleLine: true
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: false
BinPackParameters: true
BreakBeforeBinaryOperators: true
BreakBeforeBraces: Attach
BreakBeforeTernaryOperators: true
BreakConstructorInitializersBeforeComma: true
ColumnLimit: 80
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 2
ContinuationIndentWidth: 0
Cpp11BracedListStyle: true
DerivePointerBinding: true
IndentCaseLabels: true
IndentFunctionDeclarationAfterType: true
IndentWidth: 2
MaxEmptyLinesToKeep: 1
NamespaceIndentation: None
PointerBindsToType: true
SpaceAfterControlStatementKeyword: true
SpaceBeforeAssignmentOperators: true
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 2
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInAngles: false
Standard: Cpp11
TabWidth: 2
UseTab: Never
答案 0 :(得分:7)
较新版本的clang-format有一个附加选项" AllowShortBlocksOnASingleLine",它控制着这种行为。
答案 1 :(得分:5)
如果省略括号,clang-format
似乎只应用AllowShortIfStatementsOnASingleLine
选项。我测试了以下内容:
void call_long_function_name(bool) {}
void call_long_super_duper_long_really_really_long_way_long_function_name(bool) {}
void sf(bool) {}
int main() {
bool test = true;
if (test)
call_function_name(test);
if (test)
sf(test);
if (test)
call_long_super_duper_long_really_really_long_way_long_function_name(test);
if (test) {
return 0;
}
return 0;
}
得到了:
void call_long_function_name(bool) {}
void call_long_super_duper_long_really_really_long_way_long_function_name(
bool) {}
void sf(bool) {}
int main() {
bool test = true;
if (test) call_function_name(test);
if (test) sf(test);
if (test)
call_long_super_duper_long_really_really_long_way_long_function_name(test);
if (test) {
return 0;
}
return 0;
}