aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2021-10-04 00:50:51 +0200
committerGitHub <noreply@github.com>2021-10-03 16:50:51 -0600
commita0bf28cd54925f1aae522cd2243656bb6162bb57 (patch)
tree63eb5eca462a7610e79e63109f9b338cdc4e4a6b /src
parent7ba11e06c0663ac12f110132d86cd463a7937a57 (diff)
downloadrneovim-a0bf28cd54925f1aae522cd2243656bb6162bb57.tar.gz
rneovim-a0bf28cd54925f1aae522cd2243656bb6162bb57.tar.bz2
rneovim-a0bf28cd54925f1aae522cd2243656bb6162bb57.zip
vim-patch:8.2.3469: some files with json syntax are not recognized (#15891)
Problem: Some files with json syntax are not recognized. Solution: Add a few file patterns. (Emiliano Ruiz Carletti, closes vim/vim#8947) https://github.com/vim/vim/commit/50c56893423eb6ad2154a4151e67f7097f52efb6
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 9eb64f68ef..4a9cb4a8d8 100644
--- a/src/nvim/testdir/test_filetype.vim
+++ b/src/nvim/testdir/test_filetype.vim
@@ -259,7 +259,7 @@ let s:filename_checks = {
\ 'jgraph': ['file.jgr'],
\ 'jovial': ['file.jov', 'file.j73', 'file.jovial'],
\ 'jproperties': ['file.properties', 'file.properties_xx', 'file.properties_xx_xx', 'some.properties_xx_xx_file'],
- \ 'json': ['file.json', 'file.jsonp', 'file.json-patch', 'file.webmanifest', 'Pipfile.lock', 'file.ipynb'],
+ \ 'json': ['file.json', 'file.jsonp', 'file.json-patch', 'file.webmanifest', 'Pipfile.lock', 'file.ipynb', '.babelrc', '.eslintrc', '.prettierrc', '.firebaserc'],
\ 'jsonc': ['file.jsonc'],
\ 'jsp': ['file.jsp'],
\ 'julia': ['file.jl'],