mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:9.0.0417: Jsonnet files are not recognized (#20119)
Problem: Jsonnet files are not recognized.
Solution: Add a pattern for Jsonnet files. (Cezary Drożak, closes vim/vim#11073,
closes vim/vim#11081)
2a4c885d54
This commit is contained in:
@@ -979,6 +979,9 @@ au BufNewFile,BufRead .babelrc,.eslintrc,.prettierrc,.firebaserc setf json
|
||||
" JSONC
|
||||
au BufNewFile,BufRead *.jsonc setf jsonc
|
||||
|
||||
" Jsonnet
|
||||
au BufNewFile,BufRead *.jsonnet,*.libjsonnet setf jsonnet
|
||||
|
||||
" Julia
|
||||
au BufNewFile,BufRead *.jl setf julia
|
||||
|
||||
|
||||
@@ -557,6 +557,8 @@ local extension = {
|
||||
['json-patch'] = 'json',
|
||||
json5 = 'json5',
|
||||
jsonc = 'jsonc',
|
||||
jsonnet = 'jsonnet',
|
||||
libjsonnet = 'jsonnet',
|
||||
jsp = 'jsp',
|
||||
jl = 'julia',
|
||||
kv = 'kivy',
|
||||
|
||||
Reference in New Issue
Block a user