aboutsummaryrefslogtreecommitdiff
path: root/runtime/filetype.vim
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2022-01-23 16:19:48 +0100
committerGitHub <noreply@github.com>2022-01-23 16:19:48 +0100
commitffd9551aa210ecd652044ad3c43eb480858f191a (patch)
tree22a2d3e0a99e926f91a22bdbb6d4f2d536c5c79f /runtime/filetype.vim
parent3d62dd207733bbdc46fd5b6807e5d7dcf95681e2 (diff)
downloadrneovim-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 'runtime/filetype.vim')
-rw-r--r--runtime/filetype.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 803de5e0c7..cd80f9786c 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -882,6 +882,9 @@ au BufNewFile,BufRead *.jov,*.j73,*.jovial setf jovial
" JSON
au BufNewFile,BufRead *.json,*.jsonp,*.webmanifest setf json
+" JSON5
+au BufNewFile,BufRead *.json5 setf json5
+
" JSON Patch (RFC 6902)
au BufNewFile,BufRead *.json-patch setf json