aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-10-12 15:23:42 +0200
committerGitHub <noreply@github.com>2022-10-12 15:23:42 +0200
commit4f305fba14ec8c1919ed793b6e09e15ca54a8c1d (patch)
treeddc3985acb61633d29b0155cb8e05b98db549733 /src
parenteeeb6c80d8f32efee8d13ec4a56a7d487a28eba0 (diff)
downloadrneovim-4f305fba14ec8c1919ed793b6e09e15ca54a8c1d.tar.gz
rneovim-4f305fba14ec8c1919ed793b6e09e15ca54a8c1d.tar.bz2
rneovim-4f305fba14ec8c1919ed793b6e09e15ca54a8c1d.zip
vim-patch:9.0.0731: clang-tidy configuration files are not recognized (#20620)
Problem: clang-tidy configuration files are not recognized. Solution: Recognize clang-tidy files as yaml. (closes vim/vim#11350) https://github.com/vim/vim/commit/af40f9af335e0c8b167eac31ceace45b6a2e0565
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test_filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim
index d123d469a6..b637f1a16f 100644
--- a/src/nvim/testdir/test_filetype.vim
+++ b/src/nvim/testdir/test_filetype.vim
@@ -641,7 +641,7 @@ let s:filename_checks = {
\ 'xsd': ['file.xsd'],
\ 'xslt': ['file.xsl', 'file.xslt'],
\ 'yacc': ['file.yy', 'file.yxx', 'file.y++'],
- \ 'yaml': ['file.yaml', 'file.yml'],
+ \ 'yaml': ['file.yaml', 'file.yml', '.clang-tidy'],
\ 'yang': ['file.yang'],
\ 'z8a': ['file.z8a'],
\ 'zig': ['file.zig'],