summaryrefslogtreecommitdiffstats
path: root/runtime/filetype.vim
diff options
context:
space:
mode:
authorMaxime Brunet <max@brnt.mx>2022-10-20 20:52:44 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-20 20:52:44 +0100
commit6c8bc37a1083d17447156592f6f52da2d40b4855 (patch)
treec1ee69a4e0975c9c0002e160db5b63c48c8b3b50 /runtime/filetype.vim
parentd5337efece7c68e9b4ce864532ea49b02453b674 (diff)
patch 9.0.0808: jsonnet filetype detection has a typov9.0.0808
Problem: jsonnet filetype detection has a typo. Solution: Change "libjsonnet" to "libsonnet". (Maxime Brunet, closes #11412)
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r--runtime/filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index b802efa2b9..9feccd54ec 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1004,7 +1004,7 @@ au BufNewFile,BufRead .babelrc,.eslintrc,.prettierrc,.firebaserc setf json
au BufNewFile,BufRead *.jsonc setf jsonc
" Jsonnet
-au BufNewFile,BufRead *.jsonnet,*.libjsonnet setf jsonnet
+au BufNewFile,BufRead *.jsonnet,*.libsonnet setf jsonnet
" Julia
au BufNewFile,BufRead *.jl setf julia