diff options
author | kylo252 <59826753+kylo252@users.noreply.github.com> | 2022-05-30 17:49:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-30 23:49:11 +0800 |
commit | e86901eb6859cb262109be37b890763775a7f934 (patch) | |
tree | f521f24eb638e8b7985e5c1ff59e6735ffcbe1d8 | |
parent | e9803e1de6497ee21f77f45cf2670c2fe4e8ab22 (diff) | |
download | rneovim-e86901eb6859cb262109be37b890763775a7f934.tar.gz rneovim-e86901eb6859cb262109be37b890763775a7f934.tar.bz2 rneovim-e86901eb6859cb262109be37b890763775a7f934.zip |
docs(clang-format): one space in directives indent (#18800)
PPIndentWidth
The number of columns to use for indentation of preprocessor statements.
When set to -1 (default) IndentWidth is used also for preprocessor statements.
-rw-r--r-- | .clang-format | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format index afb0df2e25..a31d753217 100644 --- a/.clang-format +++ b/.clang-format @@ -48,6 +48,7 @@ IncludeCategories: AlignConsecutiveMacros: AcrossEmptyLines IndentPPDirectives: AfterHash SpaceBeforeParens: ControlStatementsExceptControlMacros +PPIndentWidth: 1 ForEachMacros: - FOR_ALL_AUEVENTS - FOR_ALL_AUPATS_IN_EVENT |