mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 20:55:18 -07:00
vim-patch:9.0.1082: some jsonc files are not recognized (#21483)
Problem: Some jsonc files are not recognized.
Solution: Add patterns for jsonc and move some from json to jsonc.
(closes vim/vim#11711)
104b2ff4d0
Co-authored-by: kylo252 <59826753+kylo252@users.noreply.github.com>
This commit is contained in:
parent
f04087d8ba
commit
45d1b1c678
@ -1454,11 +1454,15 @@ local filename = {
|
||||
['ipf.conf'] = 'ipfilter',
|
||||
['ipf6.conf'] = 'ipfilter',
|
||||
['ipf.rules'] = 'ipfilter',
|
||||
['.eslintrc'] = 'json',
|
||||
['.babelrc'] = 'json',
|
||||
['Pipfile.lock'] = 'json',
|
||||
['.firebaserc'] = 'json',
|
||||
['.prettierrc'] = 'json',
|
||||
['.babelrc'] = 'jsonc',
|
||||
['.eslintrc'] = 'jsonc',
|
||||
['.hintrc'] = 'jsonc',
|
||||
['.jsfmtrc'] = 'jsonc',
|
||||
['.jshintrc'] = 'jsonc',
|
||||
['.swrc'] = 'jsonc',
|
||||
Kconfig = 'kconfig',
|
||||
['Kconfig.debug'] = 'kconfig',
|
||||
['lftp.conf'] = 'lftp',
|
||||
@ -1912,6 +1916,7 @@ local pattern = {
|
||||
['.*%.properties_.._..'] = 'jproperties',
|
||||
['org%.eclipse%..*%.prefs'] = 'jproperties',
|
||||
['.*%.properties_.._.._.*'] = starsetf('jproperties'),
|
||||
['[jt]sconfig.*%.json'] = 'jsonc',
|
||||
['Kconfig%..*'] = starsetf('kconfig'),
|
||||
['.*%.[Ss][Uu][Bb]'] = 'krl',
|
||||
['lilo%.conf.*'] = starsetf('lilo'),
|
||||
|
@ -289,9 +289,9 @@ 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', 'org.eclipse.xyz.prefs'],
|
||||
\ 'json': ['file.json', 'file.jsonp', 'file.json-patch', 'file.webmanifest', 'Pipfile.lock', 'file.ipynb', '.babelrc', '.eslintrc', '.prettierrc', '.firebaserc', 'file.slnf'],
|
||||
\ 'json': ['file.json', 'file.jsonp', 'file.json-patch', 'file.webmanifest', 'Pipfile.lock', 'file.ipynb', '.prettierrc', '.firebaserc', 'file.slnf'],
|
||||
\ 'json5': ['file.json5'],
|
||||
\ 'jsonc': ['file.jsonc'],
|
||||
\ 'jsonc': ['file.jsonc', '.babelrc', '.eslintrc', '.jsfmtrc', '.jshintrc', '.hintrc', '.swrc', 'jsconfig.json', 'tsconfig.json', 'tsconfig.test.json', 'tsconfig-test.json'],
|
||||
\ 'jsonnet': ['file.jsonnet', 'file.libsonnet'],
|
||||
\ 'jsp': ['file.jsp'],
|
||||
\ 'julia': ['file.jl'],
|
||||
|
Loading…
Reference in New Issue
Block a user