changeset 28025:18892907cef7 v8.2.4537

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?= <gocdundar@gmail.com> 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)
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Mar 2022 17:00:03 +0100
parents 692743237166
children 09c8bfcf2761
files .gitignore src/version.c
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,