diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-01-20 09:52:05 -0300 |
---|---|---|
committer | Felipe Morales <hel.sheep@gmail.com> | 2015-01-26 21:10:14 -0300 |
commit | 6425627c3fe1d4c0a88b7309f248f57490b874fd (patch) | |
tree | 3f832b37acf5f9c232f058cea126074ab19eff01 /src/nvim/version.c | |
parent | d30464264af2b5aa261281e221d936095dbab864 (diff) | |
download | rneovim-6425627c3fe1d4c0a88b7309f248f57490b874fd.tar.gz rneovim-6425627c3fe1d4c0a88b7309f248f57490b874fd.tar.bz2 rneovim-6425627c3fe1d4c0a88b7309f248f57490b874fd.zip |
tools: add .clang-format
Configuration for clang-format and related utilities.
Examples:
clang-format -style=file <file>
git clang-format -style=file <commit>
git diff -U0 HEAD^ | clang-format-diff.py -i -p1 -style=file
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r-- | src/nvim/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 3aa8ea911c..afafc0b1bc 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -177,6 +177,7 @@ static char *(features[]) = { NULL }; +// clang-format off static int included_patches[] = { //591 NA //590, @@ -771,6 +772,7 @@ static int included_patches[] = { 1, 0 }; +// clang-format on /// Place to put a short description when adding a feature with a patch. /// Keep it short, e.g.,: "relative numbers", "persistent undo". |