diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-01-23 16:19:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 16:19:48 +0100 |
commit | ffd9551aa210ecd652044ad3c43eb480858f191a (patch) | |
tree | 22a2d3e0a99e926f91a22bdbb6d4f2d536c5c79f /src | |
parent | 3d62dd207733bbdc46fd5b6807e5d7dcf95681e2 (diff) | |
download | rneovim-ffd9551aa210ecd652044ad3c43eb480858f191a.tar.gz rneovim-ffd9551aa210ecd652044ad3c43eb480858f191a.tar.bz2 rneovim-ffd9551aa210ecd652044ad3c43eb480858f191a.zip |
vim-patch:8.2.4191: json5 files are not recognized (#17180)
Problem: json5 files are not recognized.
Solution: Add a pattern for json5 files. (closes vim/vim#9601)
https://github.com/vim/vim/commit/e15ebeffb35da4bb7d9054358671735ce6988c28
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index e2cf0c3e69..b5fa362e48 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -265,6 +265,7 @@ let s:filename_checks = { \ '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', '.babelrc', '.eslintrc', '.prettierrc', '.firebaserc', 'file.slnf'], + \ 'json5': ['file.json5'], \ 'jsonc': ['file.jsonc'], \ 'jsp': ['file.jsp'], \ 'julia': ['file.jl'], |