# HG changeset patch # User Bram Moolenaar # Date 1677259804 -3600 # Node ID 7aeaf20e2ba514615fecffee1c7237fe04ae8b5f # Parent 4c2973999f32981486ce6007dd274a54866beef8 patch 9.0.1352: "ignore" files are outdated Commit: https://github.com/vim/vim/commit/a63fd8232895bbf6751087d90fd15c8ea45f1cf0 Author: K.Takata Date: Fri Feb 24 17:16:41 2023 +0000 patch 9.0.1352: "ignore" files are outdated Problem: "ignore" files are outdated. Solution: Update "ignore" files. (Ken Takata, closes https://github.com/vim/vim/issues/12056) diff --git a/.gitignore b/.gitignore --- a/.gitignore +++ b/.gitignore @@ -68,6 +68,7 @@ src/tags /GPATH /GTAGS /GRTAGS +nsis/tags # Generated by "make test" src/po/*.ck diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -7,9 +7,9 @@ src/xxd/xxd src/auto/if_perl.c src/auto/gui_gtk_gresources.c src/auto/gui_gtk_gresources.h +src/auto/os_haiku.rdef src/objects/.dirstamp src/objects -src/tags src/types.vim # We do need src/auto/configure. @@ -46,12 +46,15 @@ gvimext.lib gvim.lib runtime/doc/uganda.nsis.txt nsis/icons/* +/vim90/ +.vscode/ # NetBeans nbproject/* # Mac OSX src/xxd/xxd.dSYM +.DS_Store # All platforms *.rej @@ -62,6 +65,12 @@ src/xxd/xxd.dSYM *.pyc *.log src/po/vim.pot +src/tags +/tags +/GPATH +/GTAGS +/GRTAGS +nsis/tags # Generated by "make test" src/po/*.ck @@ -78,14 +87,16 @@ src/testdir/dostmp/* src/testdir/messages src/testdir/viminfo src/testdir/opt_test.vim +src/testdir/failed +src/testdir/starttime runtime/indent/testdir/*.out +runtime/indent/testdir/*.fail src/memfile_test src/json_test src/message_test src/kword_test # Generated by "make install" -runtime/doc/tags runtime/doc/doctags # Generated by "make shadow". The directory names could be anything but we @@ -95,5 +106,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 @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1352, +/**/ 1351, /**/ 1350,