Skip to content

Commit a63fd82

Browse files
k-takatabrammool
authored andcommitted
patch 9.0.1352: "ignore" files are outdated
Problem: "ignore" files are outdated. Solution: Update "ignore" files. (Ken Takata, closes vim#12056)
1 parent def5521 commit a63fd82

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ src/tags
6868
/GPATH
6969
/GTAGS
7070
/GRTAGS
71+
nsis/tags
7172

7273
# Generated by "make test"
7374
src/po/*.ck

.hgignore

+19-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ src/xxd/xxd
77
src/auto/if_perl.c
88
src/auto/gui_gtk_gresources.c
99
src/auto/gui_gtk_gresources.h
10+
src/auto/os_haiku.rdef
1011
src/objects/.dirstamp
1112
src/objects
12-
src/tags
1313
src/types.vim
1414

1515
# We do need src/auto/configure.
@@ -46,12 +46,15 @@ gvimext.lib
4646
gvim.lib
4747
runtime/doc/uganda.nsis.txt
4848
nsis/icons/*
49+
/vim90/
50+
.vscode/
4951

5052
# NetBeans
5153
nbproject/*
5254

5355
# Mac OSX
5456
src/xxd/xxd.dSYM
57+
.DS_Store
5558

5659
# All platforms
5760
*.rej
@@ -62,6 +65,12 @@ src/xxd/xxd.dSYM
6265
*.pyc
6366
*.log
6467
src/po/vim.pot
68+
src/tags
69+
/tags
70+
/GPATH
71+
/GTAGS
72+
/GRTAGS
73+
nsis/tags
6574

6675
# Generated by "make test"
6776
src/po/*.ck
@@ -78,14 +87,16 @@ src/testdir/dostmp/*
7887
src/testdir/messages
7988
src/testdir/viminfo
8089
src/testdir/opt_test.vim
90+
src/testdir/failed
91+
src/testdir/starttime
8192
runtime/indent/testdir/*.out
93+
runtime/indent/testdir/*.fail
8294
src/memfile_test
8395
src/json_test
8496
src/message_test
8597
src/kword_test
8698

8799
# Generated by "make install"
88-
runtime/doc/tags
89100
runtime/doc/doctags
90101

91102
# Generated by "make shadow". The directory names could be anything but we
@@ -95,5 +106,10 @@ src/shadow-*
95106
src/runtime
96107
src/pixmaps
97108

98-
# other possible files build by tools
109+
# other files possibly created by tools
99110
src/cscope.out
111+
112+
# Linter/language server files
113+
/.cache/clangd/
114+
/.ccls-cache/
115+
/compile_commands.json

src/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,8 @@ static char *(features[]) =
695695

696696
static int included_patches[] =
697697
{ /* Add new patch number below this line */
698+
/**/
699+
1352,
698700
/**/
699701
1351,
700702
/**/

0 commit comments

Comments
 (0)