# HG changeset patch # User Bram Moolenaar # Date 1646928003 -3600 # Node ID 18892907cef76fa9ed74e667961c62b8e8aba0b0 # Parent 6927432371664b7a7dc36b81178783834d1b4e51 patch 8.2.4537: output from linter and language server shows up in git Commit: https://github.com/vim/vim/commit/48f83c31d14702b40ad0bf3c61091871d9db072d Author: =?UTF-8?q?Dundar=20G=C3=B6c?= Date: Thu Mar 10 15:51:24 2022 +0000 patch 8.2.4537: output from linter and language server shows up in git Problem: Output from linter and language server shows up in git. Solution: Add patterns to .gitignore. (Goc Dundar, closes https://github.com/vim/vim/issues/9925) diff --git a/.gitignore b/.gitignore --- a/.gitignore +++ b/.gitignore @@ -96,5 +96,10 @@ src/shadow-* src/runtime src/pixmaps -# other possible files build by tools +# other files possibly created by tools src/cscope.out + +# Linter/language server files +/.cache/clangd/ +/.ccls-cache/ +/compile_commands.json diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4537, +/**/ 4536, /**/ 4535,