我.clang-format
在我的主目录中设置 indentwidth 4 如下。
BasedOnStyle: LLVM
Standard: Cpp11
IndentWidth: 4
TabWidth: 4
UseTab: Never
但是当我clang-format -style='~/.clang-format' a.cpp
用来格式化我的代码时,缩进宽度变成了 2。比如:
// See this indent width 2. The original file has width 4,
// but clang-format changes it to width 2.
int main(int argc, char const *argv[]) {
A a;
a.bar();
clang-format --version 的输出是
LLVM (http://llvm.org/):
LLVM version 3.4.2
Optimized build.
Default target: x86_64-unknown-linux-gnu
Host CPU: core-avx-i
如何让 clang-format 使用缩进宽度 4 格式化我的代码(.h、.c、..)?