具有多行函数声明参数的Clang格式问题

时间:2016-07-19 05:17:29

标签: c++ clang-format

Clang Format一直这样做:

bool importSomethingIn( const boost::property_tree::ptree& inBoostTree,
                        int inSomeIndex,
                        std::shared_ptr<Something>
                            inSomething,
                        int x,
                        int y );

当我想要它时:

bool importSomethingIn( const boost::property_tree::ptree& inBoostTree,
                        int inSomeIndex,
                        std::shared_ptr<Something> inSomething,
                        int x,
                        int y );

请注意,它是在符号inSomething之前添加换行符和缩进符。似乎永远是模板化类型导致这种行为。

如何阻止它这样做?

这是我目前的.clang格式:

BasedOnStyle: LLVM
Language: Cpp
AccessModifierOffset: -4
AlignEscapedNewlinesLeft: false
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortFunctionsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterDefinitionReturnType: true
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: false
BinPackParameters: false
BreakBeforeBinaryOperators: false
BreakBeforeBraces: Allman
BreakBeforeTernaryOperators: false
BreakConstructorInitializersBeforeComma: false
ColumnLimit: 120
CommentPragmas: ''
ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4
Cpp11BracedListStyle: true
DerivePointerAlignment: false
DerivePointerBinding: false
ExperimentalAutoDetectBinPacking: false
IndentCaseLabels: true
IndentFunctionDeclarationAfterType: true
IndentWidth: 4
IndentWrappedFunctionNames: false
KeepEmptyLinesAtTheStartOfBlocks: false
MaxEmptyLinesToKeep: 2
NamespaceIndentation: All
ObjCBlockIndentWidth: 4
ObjCSpaceAfterProperty: true
ObjCSpaceBeforeProtocolList: true
PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakComment: 300
PenaltyBreakFirstLessLess: 120
PenaltyBreakString: 1000
PenaltyExcessCharacter: 1000
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Left
PointerBindsToType: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
SpacesInAngles: false
SpacesInContainerLiterals: true
SpacesInCStyleCastParentheses: false
SpacesInParentheses: true
Standard: Cpp11
TabWidth: 8
UseTab: Never

编辑:我正在使用我在2016年7月的github上获得here的clang格式Xcode插件(首先在Aclatraz上安装了Alcatraz然后clang格式插件)。我不完全确定clang格式二进制文件的位置,因此无法看到插件附带的版本号。

然而,根据以下建议,我使用Homebrew安装了clang-format,它给了我3.9.0版本。然后我将Xcode插件设置为&#34;使用系统clang-format&#34;我得到了理想的结果,所以我猜它一定是个错误。

2 个答案:

答案 0 :(得分:9)

对于我来说,使用clang-format 3.8

的ubuntu 16.04上你的情况似乎很好
  • 安装clang-format-3.8

    sudo apt-get install clang-format-3.8
    
  • ~/.vimrc

    map <F3> :pyf /usr/share/vim/addons/syntax/clang-format-3.8.py<cr>                  
    imap <F3> <C-o>:pyf /usr/share/vim/addons/syntax/clang-format-3.8.py<cr>            
    
  • 使用@ OP的.clang格式和源代码

    mkdir ~/test
    vim ~/test/.clang-format
    vim ~/test/test.cpp
    
  • 在vim中使用F3格式化test.cpp,然后得到结果:

    bool importSomethingIn( const boost::property_tree::ptree& inBoostTree,
                            int inSomeIndex,
                            std::shared_ptr<Something> inSomething,
                            int x,
                            int y );
    

答案 1 :(得分:5)

我认为这是由ColumnLimit引起的。我认为这是一个错误...我有这个问题,我通过改变这个变量解决了它。尝试设置:

 ColumnLimit: 0

原因

bool importSomethingIn( const boost::property_tree::ptree& inBoostTree, int inSomeIndex, std::shared_ptr<Something>" has 117+-3 chars in dependence of computing invisible chars.的长度取决于计算不可见字符的117 + -3。 ColumnLimit: 120已经确定,这是可能的原因之一,我认为已经被削减了。