1
0
forked from aniani/vim

patch 8.2.3469: some files with json syntax are not recognized

Problem:    Some files with json syntax are not recognized.
Solution:   Add a few file patterns. (Emiliano Ruiz Carletti, closes #8947)
This commit is contained in:
Bram Moolenaar
2021-10-03 20:11:20 +01:00
parent c6376c7984
commit 50c5689342
3 changed files with 6 additions and 1 deletions

View File

@@ -876,6 +876,9 @@ au BufNewFile,BufRead *.json-patch setf json
" Jupyter Notebook is also json " Jupyter Notebook is also json
au BufNewFile,BufRead *.ipynb setf json au BufNewFile,BufRead *.ipynb setf json
" Other files that look like json
au BufNewFile,BufRead .babelrc,.eslintrc,.prettierrc,.firebaserc setf json
" JSONC " JSONC
au BufNewFile,BufRead *.jsonc setf jsonc au BufNewFile,BufRead *.jsonc setf jsonc

View File

@@ -259,7 +259,7 @@ let s:filename_checks = {
\ 'jgraph': ['file.jgr'], \ 'jgraph': ['file.jgr'],
\ 'jovial': ['file.jov', 'file.j73', 'file.jovial'], \ 'jovial': ['file.jov', 'file.j73', 'file.jovial'],
\ 'jproperties': ['file.properties', 'file.properties_xx', 'file.properties_xx_xx', 'some.properties_xx_xx_file'], \ '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'], \ 'jsonc': ['file.jsonc'],
\ 'jsp': ['file.jsp'], \ 'jsp': ['file.jsp'],
\ 'julia': ['file.jl'], \ 'julia': ['file.jl'],

View File

@@ -757,6 +757,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
3469,
/**/ /**/
3468, 3468,
/**/ /**/