4
我在我的主目錄.clang-format
並設置indentwidth 4如下。設置IndentWidth不工作在鐺格式
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();
鐺格式--version的輸出是
LLVM (http://llvm.org/):
LLVM version 3.4.2
Optimized build.
Default target: x86_64-unknown-linux-gnu
Host CPU: core-avx-i
我怎樣才能讓我的代碼(.h,.c,..)以縮進寬度4格式格式化?
感謝您對-style = file的解釋。我從來沒有想過'file'意味着一個文字'文件'。 – 2014-11-04 17:09:44