1

以下是我的clang格式

---
AccessModifierOffset: '-4'
AlignConsecutiveAssignments: 'true'
AlignOperands: 'true'
AlignTrailingComments: 'true'
AllowShortCaseLabelsOnASingleLine: 'false'
AllowShortIfStatementsOnASingleLine: 'true'
AllowShortLoopsOnASingleLine: 'false'
AlwaysBreakTemplateDeclarations: 'true'
BinPackArguments: 'true'
BinPackParameters: 'true'
BreakBeforeBraces: Allman
BreakConstructorInitializersBeforeComma: 'true'
ColumnLimit: '80'
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
Cpp11BracedListStyle: 'true'
IndentCaseLabels: 'false'
IndentWidth: '4'
MaxEmptyLinesToKeep: '2'
NamespaceIndentation: All
PointerAlignment: Left
SpaceAfterCStyleCast: 'true'
SpaceBeforeAssignmentOperators: 'true'
SpaceBeforeParens: ControlStatements
SpacesBeforeTrailingComments: '1'
SpacesInParentheses: 'false'
SpacesInSquareBrackets: 'false'
Standard: Auto
TabWidth: '4'
UseTab: Always

...

但是当我在 c++ 文件中运行它时,我得到如下结果(代码是乱码复制粘贴,尽管未对齐分配的问题区域是我在代码中看到的内容的逐字副本)

template <class X>
void prettyPrint(std::ostream& o, const X* x)
{
    o << "*{";
    if (x)
    {
        prettyPrint(o, *x);
    }
    else
    {
        o << "NULL";
    }
    // I wanted the following assignments to align !!!!
    using value_type           = std::decay_t<decltype(state)>;
    using difference_type   = std::ptrdiff_t;
    using reference         = value_type&;
    using pointer             = value_type*;
    using iterator_category = std::input_iterator_tag;

    o << "}";
}

设置好

AlignConsecutiveAssignments: 'true'

我发现上述行为是错误的,我的其余部分是否会.clang-format弄乱结果,或者我应该将其报告为错误?

4

2 回答 2

4

UseTab: Always每当您需要填充至少从一个制表位到下一个制表位的空白时,使用制表符。但是,这些制表符不会对齐,因为它们前面的语句具有不同的长度,并且会打印出到不同制表位的制表符。

一个合适的替代方案是使用UseTab: ForIndentation它,顾名思义,仅使用制表符进行缩进。

甚至UseTab: Never从不使用标签。

于 2016-03-28T12:18:42.080 回答
1

UseTab: Always通过删除您发布的 .clang-format 片段中的行,我能够按照您想要的方式格式化:

template <class X>
void prettyPrint(std::ostream& o, const X* x)
{
    o << "*{";
    if (x)
    {
        prettyPrint(o, *x);
    }
    else
    {
        o << "NULL";
    }
    // I wanted the following assignments to align !!!!
    using value_type        = std::decay_t<decltype(state)>;
    using difference_type   = std::ptrdiff_t;
    using reference         = value_type&;
    using pointer           = value_type*;
    using iterator_category = std::input_iterator_tag;

    o << "}";
}

至于为什么,我猜不透……

编辑:UseTab: ForIndentation或者Never也可以,只会Always破坏它

于 2016-03-28T12:10:36.580 回答